Questions tagged as 'valgrind'

1
answer

Double linked list and circular, 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 also the function...
asked by 03.10.2018 / 20:09