Record Case Detail

Notes

This function is in beta test. Please help improve it in the issues here.

Stderr

$ ./l5_memory_check rand_double.txt inc
=================================================================
==8071==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x60200004e252 at pc 0x0000004db61c bp 0x7ffc85709fb0 sp 0x7ffc85709760
WRITE of size 3 at 0x60200004e252 thread T0
    #0 0x4db61b  (/out/package/l5_memory_check+0x4db61b)
    #1 0x517c46  (/out/package/l5_memory_check+0x517c46)
    #2 0x519fad  (/out/package/l5_memory_check+0x519fad)
    #3 0x51a144  (/out/package/l5_memory_check+0x51a144)
    #4 0x51c120  (/out/package/l5_memory_check+0x51c120)
    #5 0x51c2a9  (/out/package/l5_memory_check+0x51c2a9)
    #6 0x7f732e384b96  (/lib/x86_64-linux-gnu/libc.so.6+0x21b96)
    #7 0x41ca39  (/out/package/l5_memory_check+0x41ca39)

0x60200004e252 is located 0 bytes to the right of 2-byte region [0x60200004e250,0x60200004e252)
allocated by thread T0 here:
    #0 0x4dc8f0  (/out/package/l5_memory_check+0x4dc8f0)
    #1 0x51a49e  (/out/package/l5_memory_check+0x51a49e)
    #2 0x51b227  (/out/package/l5

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!