Difference for crossedit/png.c from version 1.2 to 1.3


version 1.2 version 1.3
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_png_c =   * static char *rcsid_png_c =
  *   "$Id: png.c,v 1.2 2000/12/16 04:34:34 cvs Exp $";   *   "$Id: png.c,v 1.3 2000/12/24 21:16:46 cvs Exp $";
  */   */
 /*  /*
     Crossfire client, a client program for the crossfire program.      Crossfire client, a client program for the crossfire program.
Line 168
 
Line 168
  pixels = (char*)malloc(*width * *height * bpp);   pixels = (char*)malloc(*width * *height * bpp);
  pixels_byte =*width * *height * bpp;   pixels_byte =*width * *height * bpp;
     } else if ((*width * *height * bpp) > pixels_byte) {      } else if ((*width * *height * bpp) > pixels_byte) {
  realloc(pixels, *width * *height * bpp);   pixels=realloc(pixels, *width * *height * bpp);
  pixels_byte =*width * *height * bpp;   pixels_byte =*width * *height * bpp;
     }      }
   


Legend:
line(s) removed in v.1.2 
line(s) changed
 line(s) added in v.1.3

File made using version 1.98 of cvs2html by leaf at 2011-07-21 19:51