]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation problem fixed
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 13 Jan 1999 21:26:15 +0000 (21:26 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 13 Jan 1999 21:26:15 +0000 (21:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1400 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/image.cpp

index cfceb4dc1c2e2b31dfde914ae32c95b01d2b36fe..0b4a2fdca7472f1e154397db6fb77a1405cfe3b5 100644 (file)
@@ -493,6 +493,7 @@ bool wxPNGHandler::LoadFile( wxImage *image, wxInputStream& stream )
     //     method is to use goto (setjmp is not really C++ dtors friendly...)
     
     unsigned char **lines = (unsigned char **) NULL;
+    unsigned int i;
     png_infop info_ptr = (png_infop) NULL;
     
     image->Destroy();
@@ -540,7 +541,7 @@ bool wxPNGHandler::LoadFile( wxImage *image, wxInputStream& stream )
     if (lines == NULL)
         goto error;
 
-    for (unsigned int i = 0; i < height; i++)
+    for (i = 0; i < height; i++)
     {
         if ((lines[i] = (unsigned char *)malloc(width * (sizeof(unsigned char) * 4))) == NULL)
         {