python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Bus error 10 for initialisation of my skip list
how can I find the bus error 10 for the initiation process of my skip list???
struct leapList *initSkipList(struct leapList *skipList[]) {
int i;
for (i=0;i<maximum_level;i++)...
JamesL_22
Votes: 0
Answers: 0
valgrind | Invalid read of size 4 | Address 0x5093430 is 0 bytes inside a block of size 4 free'd
The valgrind log messages:
==29896== Memcheck, a memory error detector
==29896== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==29896== Using Valgrind-3.16.1 and LibVEX; rerun with ...
Christian Heller
Votes: 0
Answers: 1
Resizing hash table - Help me Valgrind-debug my program
I'm trying to create a hash table that contains contact numbers and names, when I have too many contacts, I need to resize my hash table. When I do that, I'm having memory leaks + valgrind errors. I'v...
Lamett
Votes: 0
Answers: 1