Commit 5d06a1ca authored by wujing's avatar wujing

RLC assert fix ct 2_114 bug

parent 597890ab
......@@ -1729,7 +1729,11 @@ rlc_am_rx_list_display (
// rlc_am_v9_3_0_test_print_trace();
//}
//assert(cursor_p != cursor_p->next);
if(cursor_p == cursor_p->next)
{
LOG_E(RLC, "rlc_am_rx_list_display error. cursor_p %p, cursor_p->next %p\n", cursor_p, cursor_p->next);
break;
}
cursor_p = cursor_p->next;
loop++;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment