fix a tiny bug in the xcf loader that would have caused gimp to crash on a
* app/xcf.c: fix a tiny bug in the xcf loader that would have caused gimp to crash on a corrupt xcf file -Yosh
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Mon Apr 13 02:12:21 PDT 1998 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* app/xcf.c: fix a tiny bug in the xcf loader that would have
|
||||||
|
caused gimp to crash on a corrupt xcf file
|
||||||
|
|
||||||
Mon Apr 13 01:47:22 PDT 1998 Manish Singh <yosh@gimp.org>
|
Mon Apr 13 01:47:22 PDT 1998 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* plug-ins/flarefx/flarefx.c: applied gimp-timecop-980412-0
|
* plug-ins/flarefx/flarefx.c: applied gimp-timecop-980412-0
|
||||||
|
@ -328,8 +328,8 @@ xcf_load_invoker (Argument *args)
|
|||||||
if (info.file_version < N_xcf_loaders)
|
if (info.file_version < N_xcf_loaders)
|
||||||
{
|
{
|
||||||
gimage = (*(xcf_loaders[info.file_version])) (&info);
|
gimage = (*(xcf_loaders[info.file_version])) (&info);
|
||||||
if (gimage)
|
if (!gimage)
|
||||||
success = TRUE;
|
success = FALSE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -328,8 +328,8 @@ xcf_load_invoker (Argument *args)
|
|||||||
if (info.file_version < N_xcf_loaders)
|
if (info.file_version < N_xcf_loaders)
|
||||||
{
|
{
|
||||||
gimage = (*(xcf_loaders[info.file_version])) (&info);
|
gimage = (*(xcf_loaders[info.file_version])) (&info);
|
||||||
if (gimage)
|
if (!gimage)
|
||||||
success = TRUE;
|
success = FALSE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user