From 1488e2e910f9aae6cc1898346007babb54c7712d Mon Sep 17 00:00:00 2001 From: rocky Date: Sun, 21 Mar 2004 00:51:49 +0000 Subject: [PATCH] Allocation of buffer too short caught by valgrind. --- lib/iso9660_fs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/iso9660_fs.c b/lib/iso9660_fs.c index aee73ebe..3bd0e0e1 100644 --- a/lib/iso9660_fs.c +++ b/lib/iso9660_fs.c @@ -1,5 +1,5 @@ /* - $Id: iso9660_fs.c,v 1.18 2004/02/26 01:33:01 rocky Exp $ + $Id: iso9660_fs.c,v 1.19 2004/03/21 00:51:49 rocky Exp $ Copyright (C) 2001 Herbert Valerio Riedel Copyright (C) 2003, 2004 Rocky Bernstein @@ -40,7 +40,7 @@ #include -static const char _rcsid[] = "$Id: iso9660_fs.c,v 1.18 2004/02/26 01:33:01 rocky Exp $"; +static const char _rcsid[] = "$Id: iso9660_fs.c,v 1.19 2004/03/21 00:51:49 rocky Exp $"; /* Implementation of iso9660_t type */ struct _iso9660 { @@ -371,7 +371,7 @@ _fs_iso_stat_traverse (iso9660_t *iso, const iso9660_stat_t *_root, stat = _iso9660_dir_to_statbuf (iso9660_dir, true); if (translate) { - char *trans_fname = malloc(strlen(stat->filename)); + char *trans_fname = malloc(strlen(stat->filename)+1); int trans_len; if (trans_fname == NULL) {