Fix memory leak caught by valgrind.

This commit is contained in:
rocky
2004-03-20 13:16:19 +00:00
parent 209a38a282
commit 1fc6fae5ff
2 changed files with 5 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
/* /*
$Id: sample3.c,v 1.6 2003/11/05 04:12:57 rocky Exp $ $Id: sample3.c,v 1.7 2004/03/20 13:16:19 rocky Exp $
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com> Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
@@ -196,5 +196,6 @@ main(int argc, const char *argv[])
break; break;
} }
} }
cdio_destroy(cdio);
return 0; return 0;
} }

View File

@@ -1,7 +1,7 @@
/* /*
$Id: sample4.c,v 1.4 2003/11/05 04:12:58 rocky Exp $ $Id: sample4.c,v 1.5 2004/03/20 13:18:31 rocky Exp $
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com> Copyright (C) 2003, 2004 Rocky Bernstein <rocky@panix.com>
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -217,5 +217,6 @@ main(int argc, const char *argv[])
break; break;
} }
} }
cdio_destroy(cdio);
return 0; return 0;
} }