Corrected improper reaction on memory shortage. Coverity CID 28825.

This commit is contained in:
Thomas Schmitt 2015-11-06 19:47:15 +00:00
parent 98a76e6841
commit 9fa184c9e1
2 changed files with 2 additions and 2 deletions

View File

@ -4467,7 +4467,7 @@ int Xorriso_named_pipe_loop(struct XorrisO *xorriso,
if(lst_ret <= 0) {
Xorriso_msgs_submit(xorriso, 0,
"-named_pipe_loop: Cannot buffer all input lines", 0, "FATAL", 0);
ret= -1;
ret= -1; goto ex;
} else {
if(xorriso->buffered_dialog == NULL)
xorriso->buffered_dialog= prev_lst;

View File

@ -1 +1 @@
#define Xorriso_timestamP "2015.11.06.181047"
#define Xorriso_timestamP "2015.11.06.194638"