fix: Adding NULL pointer derefernce on set_ll_free_one.

This commit is contained in:
2025-06-26 01:42:36 +02:00
parent 86894713ac
commit 763781b92d
4 changed files with 13 additions and 5 deletions

View File

@@ -28,8 +28,9 @@
if (exp != act) \
{ \
test->passed = false; \
test->error_msg = format_string( \
"Expected %d to be %d\n Failed with message: " msg, act, exp); \
test->error_msg = \
format_string("Expected %d to be %d\n Failed with message: %s", \
act, exp, msg); \
return; \
}