laforge submitted this change.
3 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
out ep: fix swapped error handling
Change-Id: I2833f0aca3ffebfceaaf2a0681a9f8242817e722
---
M sysmoOCTSIM/main.c
1 file changed, 1 insertion(+), 1 deletion(-)
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;
To view, visit change 39501. To unsubscribe, or for help writing mail filters, visit settings.