Hi,

I'm doing the exercises of a C language handbook. I'm using Valgrind to check for memory leak since I use the malloc calls. In the past I was used to using "valkyrie" but sadly isn't available anymore for Bookworm (does anybody know for a replacement?).

I suppose that Valgrind detects a memory leak for my source code, here its output:

$ valgrind --track-origins=yes --leak-check=full -s ./a.out
==101348== Memcheck, a memory error detector
==101348== Copyright (C) 2002-2022, and GNU GPL'd, by Julian Seward et al.
==101348== Using Valgrind-3.19.0 and LibVEX; rerun with -h for copyright info
==101348== Command: ./a.out
==101348==
12345678
==101348==
==101348== HEAP SUMMARY:
==101348==     in use at exit: 24 bytes in 1 blocks
==101348==   total heap usage: 9 allocs, 8 frees, 1,216 bytes allocated
==101348==
==101348== 24 bytes in 1 blocks are definitely lost in loss record 1 of 1
==101348== at 0x48407B4: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==101348==    by 0x10924B: add_element (in a.out)
==101348==    by 0x1093B3: main (in a.out)
==101348==
==101348== LEAK SUMMARY:
==101348==    definitely lost: 24 bytes in 1 blocks
==101348==    indirectly lost: 0 bytes in 0 blocks
==101348==      possibly lost: 0 bytes in 0 blocks
==101348==    still reachable: 0 bytes in 0 blocks
==101348==         suppressed: 0 bytes in 0 blocks
==101348==
==101348== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)

Is there a memory leak? What it sounds strange to me is that Valgrind reports: "total heap usage: 9 allocs, 8 frees, …" when for me the calls to "malloc" should be 8, not 9.

Is there any C guru here that can take a look to my source code in attachment? In order to avoid off topic messages in the future does anybody know where to ask for these topics?
TIA
--
Franco Martelli
/*
* Functions that splits and reassemble an integer into single digit and store it into a list of structs
*/
#include "e09-01.h"
#include <stdlib.h>
#include <malloc.h>

static DIGIT *head, *last;

void add_element( unsigned int i )
{
	DIGIT *p;
	/* If the first element (the head) has not been
	* created, create it now.
	*/
	if ( head == NULL )
	{
		head = last = (DIGIT *) malloc( sizeof ( DIGIT ) );
		head->dgt = last->dgt = i;
		head->next = head->prev = last->next = last->prev = NULL;
		return;
	}
	/* Otherwise, find the last element in the list */
	for (p = head; p->next != NULL; p = p->next)
		; /* null statement */

	p->next = (DIGIT *) malloc( sizeof ( DIGIT ) );
	p->next->prev = p;
	p->next->dgt = i;
	p->next->next = NULL;
	last = p->next;
}

void print_list()
{
	for( const DIGIT *p = last; p->prev != NULL; p = p->prev )
		printf("%d", p->dgt );
	printf("%d\n", head->dgt );
}

void dealloc()
{
	for ( const DIGIT *p = head; p->next != NULL; p = p->next )
		if ( p->prev != NULL )
			free( p->prev );
	free( last );
}

int main( void )
{
	for( register unsigned int j = 12345678; j ; j /= 10 )
		add_element( j % 10 );

	print_list();
	dealloc();
	exit( 0 );
}
#include <stdio.h>	// for the NULL pointer 0

typedef struct digit {
	unsigned int dgt : 4;
	struct digit *prev;
	struct digit *next;
} DIGIT;

Reply via email to