laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ccid-firmware/+/39501?usp=email )
(
3 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: out ep: fix swapped error handling ......................................................................
out ep: fix swapped error handling
Change-Id: I2833f0aca3ffebfceaaf2a0681a9f8242817e722 --- M sysmoOCTSIM/main.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: laforge: Looks good to me, approved Jenkins Builder: Verified
diff --git a/sysmoOCTSIM/main.c b/sysmoOCTSIM/main.c index 79a74f8..51421aa 100644 --- a/sysmoOCTSIM/main.c +++ b/sysmoOCTSIM/main.c @@ -205,7 +205,7 @@ rc = ccid_df_read_out(msgb_data(msg), msgb_tailroom(msg)); if (rc != ERR_NONE) { /* re-add to the list of free msgb's */ - llist_add_tail_at(&g_ccid_s.free_q, &msg->list); + llist_add_tail_at(&msg->list, &g_ccid_s.free_q); return 0; } return 1;