From fdcdc8fd46547a7cd77010db6b57f9cc9f4f51d1 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 11 Dec 2001 16:03:13 +0000 Subject: Multiple fixes from Sebastien. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1833 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_PNM_Image.cxx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'src/Fl_PNM_Image.cxx') diff --git a/src/Fl_PNM_Image.cxx b/src/Fl_PNM_Image.cxx index 13bcb8e49..0f5801f0b 100644 --- a/src/Fl_PNM_Image.cxx +++ b/src/Fl_PNM_Image.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_PNM_Image.cxx,v 1.1.2.2 2001/11/28 18:09:08 easysw Exp $" +// "$Id: Fl_PNM_Image.cxx,v 1.1.2.3 2001/12/11 16:03:12 easysw Exp $" // // Fl_PNM_Image routines. // @@ -24,6 +24,7 @@ // // Contents: // +// Fl_PNM_Image::Fl_PNM_Image() - Load a PNM image... // // @@ -73,6 +74,12 @@ Fl_PNM_Image::Fl_PNM_Image(const char *name) // I - File to read // lineptr = fgets(line, sizeof(line), fp); + if (!lineptr) { + Fl::error("Early end-of-file in PNM file \"%s\"!", name); + fclose(fp); + return; + } + lineptr ++; format = atoi(lineptr); @@ -159,5 +166,5 @@ Fl_PNM_Image::Fl_PNM_Image(const char *name) // I - File to read // -// End of "$Id: Fl_PNM_Image.cxx,v 1.1.2.2 2001/11/28 18:09:08 easysw Exp $". +// End of "$Id: Fl_PNM_Image.cxx,v 1.1.2.3 2001/12/11 16:03:12 easysw Exp $". // -- cgit v1.2.3