summaryrefslogtreecommitdiff
path: root/ShowIFF
diff options
context:
space:
mode:
authorChristian A. Weber <chris@gna.ch>1993-09-09 22:32:00 +0000
committerChristian A. Weber <chris@gna.ch>1993-09-09 22:32:00 +0000
commitde4c1624630aff7a4f1aead070f40763fbfe07ca (patch)
treea322324766aa57231b5a15e8b87a800d1bfb896a /ShowIFF
parent257f8a019b00524225c0bae49d5bb3c4d85ca791 (diff)
downloadiff-library-de4c1624630aff7a4f1aead070f40763fbfe07ca.tar.gz
iff-library-de4c1624630aff7a4f1aead070f40763fbfe07ca.tar.bz2
iff-library-de4c1624630aff7a4f1aead070f40763fbfe07ca.zip
OS-Bug in LoadRGB8() umgangen
Diffstat (limited to 'ShowIFF')
-rw-r--r--ShowIFF/ShowIFF.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/ShowIFF/ShowIFF.c b/ShowIFF/ShowIFF.c
index 9cb8155..90e6376 100644
--- a/ShowIFF/ShowIFF.c
+++ b/ShowIFF/ShowIFF.c
@@ -1,12 +1,12 @@
/*
**
-** $Id: ShowIFF.c,v 3.4 93/02/04 22:35:18 chris Exp $
-** $Revision: 3.4 $
+** $Id: ShowIFF.c,v 3.5 93/05/24 15:34:36 chris Exp $
+** $Revision: 3.5 $
**
** $Filename: ShowIFF/ShowIFF.c $
** $Author: Christian A. Weber $
** $Release: 23.2 $
-** $Date: 93/02/04 22:35:18 $
+** $Date: 93/05/24 15:34:36 $
**
** NAME
** ShowIFF - a fast IFF picture viewer for Workbench and Shell
@@ -398,6 +398,12 @@ struct BitMap *MyAllocBitMap(LONG depth, LONG width, LONG height)
{
MyFreeBitMap(bm);
bm = NULL;
+ break;
+ }
+ }
+ }
+ }
+
return bm;
}