Most voted "valgrind" questions
None
Learn more…3 questions
Sort by count of
-
2
votes1
answer50
viewsValgrind problem and dynamic allocation in C++
I have a program a little bigger than that, I selected the part that I can not solve, are errors that seem unfounded, I’ve really tried everything. I imagine it’s a structural problem. I will post…
-
1
votes1
answer32
viewsDouble-linked and circular list, memory errors with Valgrind
I have the following structures: typedef struct Node { char info[40]; struct Node *ant; struct Node *prox; }NoCDup; typedef struct LDEC { NoCDup *cabeca; NoCDup *cauda; int tamanho; }ListaCDup; And…
-
1
votes1
answer49
viewsValgrind does not show which line the error occurred
I’m trying to use Valgrind for Linux in order to check for memory loss, however the error shown in the terminal does not show on which specific line it is. ==4873== Address 0x4a4e047 is 0 bytes…