From: John Darrington Date: Fri, 25 Feb 2005 13:14:29 +0000 (+0000) Subject: Fixed a bug which caused a crash when reading non-existent files. X-Git-Tag: v0.4.0~173 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e48df05eeeb85838526a03a3371964f5f6b14321;p=pspp-builds.git Fixed a bug which caused a crash when reading non-existent files. --- diff --git a/src/ChangeLog b/src/ChangeLog index c5fd1977..f00274b7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +Fri Feb 25 21:11:35 WST 2005 John Darrington + + * sfm-read.c: Fixed a buglet which caused a crash when trying + to read a non-existent file. + Sun Feb 13 16:11:13 2005 Ben Pfaff Fix Bug #11955. diff --git a/src/sfm-read.c b/src/sfm-read.c index 9c0cc6d3..40a366cf 100644 --- a/src/sfm-read.c +++ b/src/sfm-read.c @@ -153,9 +153,13 @@ sfm_close_reader (struct sfm_reader *r) if (r->fh != NULL) fh_close (r->fh, "system file", "rs"); - if (fn_close (handle_get_filename (r->fh), r->file) == EOF) - msg (ME, _("%s: Closing system file: %s."), - handle_get_filename (r->fh), strerror (errno)); + + if ( r->file ) { + if (fn_close (handle_get_filename (r->fh), r->file) == EOF) + msg (ME, _("%s: Closing system file: %s."), + handle_get_filename (r->fh), strerror (errno)); + r->file = NULL; + } free (r->vars); free (r->buf); free (r); diff --git a/tests/Makefile.am b/tests/Makefile.am index f94d9b4d..41769383 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -55,6 +55,7 @@ TESTS = \ bugs/double-frequency.sh \ bugs/get.sh \ bugs/examine-1sample.sh \ + bugs/get-no-file.sh \ bugs/html-frequency.sh \ bugs/if_crash.sh \ bugs/multipass.sh \ diff --git a/tests/bugs/get-no-file.sh b/tests/bugs/get-no-file.sh new file mode 100755 index 00000000..7df000f9 --- /dev/null +++ b/tests/bugs/get-no-file.sh @@ -0,0 +1,64 @@ +#!/bin/sh + +# This program tests for a bug which caused a crash when +# GET specified a non-existent file + +TEMPDIR=/tmp/pspp-tst-$$ +TESTFILE=$TEMPDIR/`basename $0`.sps + +here=`pwd`; + +# ensure that top_srcdir is absolute +cd $top_srcdir; top_srcdir=`pwd` + +export STAT_CONFIG_PATH=$top_srcdir/config + + +cleanup() +{ + rm -rf $TEMPDIR +} + + +fail() +{ + echo $activity + echo FAILED + cleanup; + exit 1; +} + + +no_result() +{ + echo $activity + echo NO RESULT; + cleanup; + exit 2; +} + +pass() +{ + cleanup; + exit 0; +} + +mkdir -p $TEMPDIR + +cd $TEMPDIR + +activity="create program" +cat > $TESTFILE < /dev/null +if [ $? -ne 0 ] ; then fail ; fi + +pass