diff options
Diffstat (limited to 'lib/cdutils.cpp')
-rw-r--r-- | lib/cdutils.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/cdutils.cpp b/lib/cdutils.cpp index 3ecea36..51e2e09 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.26 2004-04-28 14:24:19 pixel Exp $ */ +/* $Id: cdutils.cpp,v 1.27 2004-05-01 11:48:58 pixel Exp $ */ #include <stdio.h> #include <string.h> @@ -844,8 +844,10 @@ ssize_t cdfile::read(void *buf, size_t count) throw (GeneralException) { count = MIN(count, (size_t) (size - itell)); - if (!count) + if (!count) { + close(); return 0; + } startsec = itell / sec_sizes[mode] + sector; startbyte = itell % sec_sizes[mode]; |