From 1f12bee2234cdee5c6890330fcd086e4e41cd56d Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Wed, 4 Nov 2015 12:40:06 +0000 Subject: [PATCH] Prevented a possible program error in Xorriso_dialog_input() --- xorriso/text_io.c | 2 +- xorriso/xorriso_timestamp.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xorriso/text_io.c b/xorriso/text_io.c index 4637d765..3ee32cd5 100644 --- a/xorriso/text_io.c +++ b/xorriso/text_io.c @@ -347,7 +347,7 @@ int Xorriso_dialog_input(struct XorrisO *xorriso, char line[], int linesize, get_single:; - if(xorriso->buffered_dialog != NULL && !(flag & 16)) { + if(xorriso->buffered_dialog != NULL && !(flag & (16 | 2))) { /* Consume next buffered line */ next_lst= Xorriso_lst_get_next(xorriso->buffered_dialog, 0); strcpy(line, Xorriso_lst_get_text(xorriso->buffered_dialog, 0)); diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index bcda72bf..b18f4abc 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2015.11.04.114353" +#define Xorriso_timestamP "2015.11.04.123926"