Record Detail

Compile Error

/in/hash.c:21:55: error: 'memset' call operates on objects of type 'KeyValue *' (aka 'struct KeyValue *') while the size is based on a different type 'KeyValue **' (aka 'struct KeyValue **') [-Werror,-Wsizeof-pointer-memaccess]
        memset(hashtable->table, 0, sizeof(hashtable->table));
               ~~~~~~~~~~~~~~~~            ~~~~~~~~~~~^~~~~
/in/hash.c:21:55: note: did you mean to dereference the argument to 'sizeof' (and multiply it by the number of elements)?
        memset(hashtable->table, 0, sizeof(hashtable->table));
                                           ~~~~~~~~~~~^~~~~
1 error generated.

Information

Submit By
Type
Submission
Problem
l1p2
Homework
l1
Language
C (Clang, with memory check)
Submit At
2023-10-15 14:41:26
Judged At
2023-10-15 14:41:26
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes