mirror of https://github.com/GNOME/gimp.git
Applied Shuji's xcf load fclose patch. Appears to work.
--sg
This commit is contained in:
parent
c7f298c330
commit
e8736da4aa
|
@ -1,10 +1,13 @@
|
|||
Tue Dec 16 12:32:30 1997 Scott Goehring <scott@poverty.bloomington.in.us>
|
||||
|
||||
* app/xcf.c (xcf_load_invoker): Shuji's xcf load close patch.
|
||||
|
||||
Mon Dec 15 19:03:59 EST 1997 Adrian Likins <adrian@gimp.org>
|
||||
|
||||
* fixed a few broken tips in gimp_tips.txt
|
||||
|
||||
* updated add-bevel.scm
|
||||
|
||||
|
||||
Sun Dec 14 19:47:59 PST 1997 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* Configured in the flame plugin by default
|
||||
|
|
|
@ -334,6 +334,7 @@ xcf_load_invoker (Argument *args)
|
|||
success = FALSE;
|
||||
}
|
||||
}
|
||||
fclose (info.fp);
|
||||
}
|
||||
|
||||
return_args = procedural_db_return_args (&xcf_plug_in_load_proc.db_info, success);
|
||||
|
|
|
@ -334,6 +334,7 @@ xcf_load_invoker (Argument *args)
|
|||
success = FALSE;
|
||||
}
|
||||
}
|
||||
fclose (info.fp);
|
||||
}
|
||||
|
||||
return_args = procedural_db_return_args (&xcf_plug_in_load_proc.db_info, success);
|
||||
|
|
Loading…
Reference in New Issue