diff options
Diffstat (limited to 'lib/cdutils.cpp')
-rw-r--r-- | lib/cdutils.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/cdutils.cpp b/lib/cdutils.cpp index 9e81c89..4e25aed 100644 --- a/lib/cdutils.cpp +++ b/lib/cdutils.cpp @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: cdutils.cpp,v 1.20 2003-12-12 12:45:20 pixel Exp $ */ +/* $Id: cdutils.cpp,v 1.21 2003-12-26 19:05:31 pixel Exp $ */ #include <stdio.h> #include <string.h> @@ -36,9 +36,7 @@ cdutils::cdutils(Handle * r, Handle * w) : rootDir(0), f_iso_r(r), f_iso_w(w), p cdutils::~cdutils() { if (ppf_file) delete ppf_file; - void * t = rootDir; - free(t); - rootDir = 0; + free(rootDir); } unsigned char cdutils::from_BCD(unsigned char x) { @@ -827,9 +825,7 @@ cdfile::cdfile(cdutils * _cd, int _sector, ssize_t _size, int _mode) : Handle(-1 } cdfile::~cdfile() { - void * t = dir; - free(t); - dir = 0; + free(dir); } ssize_t cdfile::read(void *buf, size_t count) throw (GeneralException) { |