* fixed missing endupdate when loadinf image with size=0

git-svn-id: trunk@22264 -
This commit is contained in:
marc 2009-10-22 20:31:04 +00:00
parent ba1b2f95f1
commit a457e55753

View File

@ -430,7 +430,10 @@ begin
UnshareImage(False);
Clear; // clear old saved stream, allocated handles, etc
if ASize = 0
then Exit;
then begin
EndUpdate(False);
Exit;
end;
WorkStream := nil;
try