More timely report of library messages with -check_md5

This commit is contained in:
Thomas Schmitt 2009-08-25 19:11:29 +00:00
parent 543df52274
commit 4234319cff
2 changed files with 3 additions and 1 deletions

View File

@ -1 +1 @@
#define Xorriso_timestamP "2009.08.24.183750"
#define Xorriso_timestamP "2009.08.25.191217"

View File

@ -12401,6 +12401,7 @@ int Xorriso_check_md5(struct XorrisO *xorriso, void *in_node, char *path,
goto ex;
/* Report outcome */
Xorriso_process_msg_queues(xorriso,0);
if(! iso_md5_match(node_md5, data_md5)) {
sprintf(xorriso->result_line, "MD5 MISMATCH: ");
Text_shellsafe(path, xorriso->result_line, 1);
@ -12418,6 +12419,7 @@ int Xorriso_check_md5(struct XorrisO *xorriso, void *in_node, char *path,
}
ex:;
Xorriso_process_msg_queues(xorriso,0);
Xorriso_iso_file_close(xorriso, &stream, 0);
if(ctx != NULL)
iso_md5_end(&ctx, data_md5);