From 44661ecf7d9b87012293fa2e997646af2b1f6cbd Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Sat, 25 Aug 2007 14:46:07 +0000 Subject: [PATCH 1/1] 2007-08-25 [paul] 2.10.0cvs173 * src/common/log.c fix a segfault when refreshing RSSyl feeds --- ChangeLog | 5 +++++ PATCHSETS | 1 + configure.ac | 2 +- src/common/log.c | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f80abfdb7..c1dfdd3a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-08-25 [paul] 2.10.0cvs173 + + * src/common/log.c + fix a segfault when refreshing RSSyl feeds + 2007-08-25 [paul] 2.10.0cvs172 * src/gtk/icon_legend.c diff --git a/PATCHSETS b/PATCHSETS index e260ad868..c550af0ee 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -2827,3 +2827,4 @@ ( cvs diff -u -r 1.14.2.57 -r 1.14.2.58 src/plugins/trayicon/trayicon.c; ) > 2.10.0cvs170.patchset ( cvs diff -u -r 1.155.2.73 -r 1.155.2.74 src/Makefile.am; cvs diff -u -r 1.25.2.46 -r 1.25.2.47 src/stock_pixmap.c; diff -u /dev/null src/pixmaps/insert_file.xpm; ) > 2.10.0cvs171.patchset ( cvs diff -u -r 1.1.2.15 -r 1.1.2.16 src/gtk/icon_legend.c; ) > 2.10.0cvs172.patchset +( cvs diff -u -r 1.6.2.15 -r 1.6.2.16 src/common/log.c; ) > 2.10.0cvs173.patchset diff --git a/configure.ac b/configure.ac index 2e2b78e66..0c2e10fe7 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=10 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=172 +EXTRA_VERSION=173 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/common/log.c b/src/common/log.c index d1f469d3d..a3be1a7f0 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -140,7 +140,7 @@ void log_print(LogInstance instance, const gchar *format, ...) g_vsnprintf(buf + LOG_TIME_LEN, BUFFSIZE, format, args); va_end(args); - if (debug_get_mode()) g_print(buf); + if (debug_get_mode()) g_printf(buf); logtext->instance = instance; logtext->text = g_strdup(buf); -- 2.25.1