1
0
Fork 0
qemu/roms/openbios/fs/ext2/ext2_closedir.c
Daniel Baumann ea34ddeea6
Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 14:27:05 +02:00

18 lines
270 B
C

/*
*
* (c) 2008-2009 Laurent Vivier <Laurent@lvivier.info>
*
* This file has been copied from EMILE, http://emile.sf.net
*
*/
#include "libext2.h"
#include "ext2.h"
void ext2_closedir(ext2_DIR *dir)
{
if (dir == NULL)
return;
free(dir->inode);
free(dir);
}