Changeset 583 for ImageMagick/trunk

Show
Ignore:
Timestamp:
11/12/09 17:58:56 (4 months ago)
Author:
cristy
Message:
 
Location:
ImageMagick/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • ImageMagick/trunk/ChangeLog

    r572 r583  
     12009-11-12  6.5.7-8 Cristy  <quetzlzacatenango@image...> 
     2  * Thumb::URI file URI now has the correct number of forward slashes. 
     3 
    142009-11-09  6.5.7-7 Glenn Randers-Pehrson <glennrp@image...> 
    25  * Suppress libpng pedantic warnings and warn about using old libpng-1.4.0 
  • ImageMagick/trunk/magick/resize.c

    r532 r583  
    29282928  (void) DeleteImageProperty(thumbnail_image,"comment"); 
    29292929  (void) CopyMagickString(value,image->magick_filename,MaxTextExtent); 
    2930   if (strstr(image->magick_filename,"///") == (char *) NULL) 
    2931     (void) FormatMagickString(value,MaxTextExtent,"file:///%s", 
     2930  if (strstr(image->magick_filename,"//") == (char *) NULL) 
     2931    (void) FormatMagickString(value,MaxTextExtent,"file://%s", 
    29322932      image->magick_filename); 
    29332933  (void) SetImageProperty(thumbnail_image,"Thumb::URI",value);