http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=16487).
* Montage now uses final background setting (e.g. montage -background none ...
-background lightblue show:).
+ * Do not annotate directory paths in ListFiles().
2010-06-17 6.6.2-7 Cristy <quetzlzacatenango@image...>
* Support new label:pointsize property.
/*
Save the current and change to the new directory.
*/
- buffer=(struct dirent *) AcquireAlignedMemory(1,sizeof(*buffer)+FILENAME_MAX+1);
+ buffer=(struct dirent *) AcquireAlignedMemory(1,sizeof(*buffer)+
+ FILENAME_MAX+1);
if (buffer == (struct dirent *) NULL)
ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
while ((MagickReadDirectory(current_directory,buffer,&entry) == 0) &&
}
#endif
filelist[*number_entries]=(char *) AcquireString(entry->d_name);
- if (IsPathDirectory(entry->d_name) > 0)
- (void) ConcatenateMagickString(filelist[*number_entries],
- DirectorySeparator,MaxTextExtent);
(*number_entries)++;
}
}