Notes
This function is in beta test. Please help improve it in the issues
here.
$ ./ex3_memory_check rand_int.txt inc CLinkedList.c:87:22: runtime error: null pointer passed as argument 1, which is declared to never be null /usr/include/stdlib.h:105:33: note: nonnull attribute specified here SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior CLinkedList.c:87:22 in AddressSanitizer:DEADLYSIGNAL ================================================================= ==9322==ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x7efc5d04a1a0 bp 0x000000000000 sp 0x7fff51f52eb0 T0) ==9322==The signal is caused by a READ memory access. ==9322==Hint: address points to the zero page. #0 0x7efc5d04a19f (/lib/x86_64-linux-gnu/libc.so.6+0x4519f) #1 0x48e93c (/out/package/ex3_memory_check+0x48e93c) #2 0x5159ae (/out/package/ex3_memory_check+0x5159ae) #3 0x515c3d (/out/package/ex3_memory_check+0x515c3d) #4 0x517d53 (/out/package/ex3_memory_check+0x517d53) #5 0x7efc5d026c86 (/lib/x86_64-linux-gnu/libc.so.6+0x21c86) #6 0x41cac9 (/out/package/ex3_memory
Hints
Your answer may be identical to the JOJ answer in the first several lines.
However, the main problem you meet now is Runtime Error. And the exit code of your program is 1, which should be 0.
Please double check your code to solve this problem and try again.
Your Answer
Program exit with non zero value 1!
JOJ Answer
Correct!