From 2ecf540f20e3db8594d3a3fa539d338b27b3a092 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 26 Feb 2009 11:01:40 +0100 Subject: Fixed some memory leaks changed default paths --- src/Daemon/CrashWatcher.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/Daemon/CrashWatcher.cpp') diff --git a/src/Daemon/CrashWatcher.cpp b/src/Daemon/CrashWatcher.cpp index 1cf6e1f..1e447b0 100644 --- a/src/Daemon/CrashWatcher.cpp +++ b/src/Daemon/CrashWatcher.cpp @@ -41,7 +41,8 @@ to_string( T x ) gboolean CCrashWatcher::handle_event_cb(GIOChannel *gio, GIOCondition condition, gpointer daemon){ GIOError err; - char buf[INOTIFY_BUFF_SIZE]; + //char *buf = malloc(INOTIFY_BUFF_SIZE; + char *buf = new char[INOTIFY_BUFF_SIZE]; gsize len; int i = 0; err = g_io_channel_read (gio, buf, INOTIFY_BUFF_SIZE, &len); @@ -81,6 +82,7 @@ gboolean CCrashWatcher::handle_event_cb(GIOChannel *gio, GIOCondition condition, } #endif /*DEBUG*/ } + delete[] buf; return TRUE; } -- cgit