You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 14, 2026. It is now read-only.
'parse_arg_eq_done(&pt)' should be called to free memory before function return. Please go over all the 'return' in this function.
There are multiple instance return the function without calling parse_arg_eq_done().
The right behavior should be 3 steps
test_error("xxxxxx", ...); // print proper error information.
rv = xx; // set proper error value
goto done; // go to the function end to release memory.