Changeset: d8580c12b0b6 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/d8580c12b0b6
Modified Files:
gdk/gdk_logger.c
Branch: binresultset
Log Message:
we should only call log_close_output when we are not flushing.
diffs (13 lines):
diff --git a/gdk/gdk_logger.c b/gdk/gdk_logger.c
--- a/gdk/gdk_logger.c
+++ b/gdk/gdk_logger.c
@@ -1096,8 +1096,7 @@ log_close_input(logger *lg)
static inline void
log_close_output(logger *lg)
{
- if (lg->flushing_output_log)
- return;
+ assert (!lg->flushing_output_log);
if (!LOG_DISABLED(lg))
close_stream(lg->output_log);
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]