% %
% %
% %
-% S h r e a d F i l e %
+% S h r e d F i l e %
% %
% %
% %
*/
status=remove_utf8(path);
if (status == -1)
- return(MagickFalse);
+ {
+ (void) LogMagickEvent(ExceptionEvent,GetMagickModule(),
+ "Failed to remove: %s",path);
+ return(MagickFalse);
+ }
return(MagickTrue);
}
file=open_utf8(path,O_WRONLY | O_EXCL | O_BINARY,S_MODE);
Don't shred the file, just remove it.
*/
status=remove_utf8(path);
+ if (status == -1)
+ (void) LogMagickEvent(ExceptionEvent,GetMagickModule(),
+ "Failed to remove: %s",path);
return(MagickFalse);
}
/*