Browse Source

version updates + leak fix

Jindrich Makovicka 20 years ago
parent
commit
3961591927
5 changed files with 8 additions and 6 deletions
  1. 1 1
      AUTHORS
  2. 1 1
      Makefile
  3. 1 1
      debian/control
  4. 1 1
      debian/copyright
  5. 4 2
      multiping.c

+ 1 - 1
AUTHORS

@@ -1 +1 @@
-(c) 2005 Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
+(c) 2006 Jindrich Makovicka <makovick@gmail.com>

+ 1 - 1
Makefile

@@ -7,7 +7,7 @@ endif
 ifeq ($(HELPERDIR),)
 ifeq ($(HELPERDIR),)
 HELPERDIR=$(INSTALLROOT)/lib/gkrellm2/exec
 HELPERDIR=$(INSTALLROOT)/lib/gkrellm2/exec
 endif
 endif
-VERSION = 2.0.11
+VERSION = 2.0.12
 PKGNAME = gkrellm-multiping
 PKGNAME = gkrellm-multiping
 CC = gcc
 CC = gcc
 
 

+ 1 - 1
debian/control

@@ -1,7 +1,7 @@
 Source: gkrellm-multiping
 Source: gkrellm-multiping
 Section: x11
 Section: x11
 Priority: optional
 Priority: optional
-Maintainer: Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
+Maintainer: Jindrich Makovicka <makovick@gmail.com>
 Build-Depends: debhelper (>= 4.1.0), gkrellm, libgtk2.0-dev
 Build-Depends: debhelper (>= 4.1.0), gkrellm, libgtk2.0-dev
 Standards-Version: 3.6.1.1
 Standards-Version: 3.6.1.1
 
 

+ 1 - 1
debian/copyright

@@ -1,4 +1,4 @@
-Upstream Author: Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
+Upstream Author: Jindrich Makovicka <makovick@gmail.com>
 
 
 Part of the code is based on inetutils' Ping, which is copyrighted by
 Part of the code is based on inetutils' Ping, which is copyrighted by
 The Regents of the University of California under the BSD license.
 The Regents of the University of California under the BSD license.

+ 4 - 2
multiping.c

@@ -205,6 +205,8 @@ static void launch_pipe()
 	pinger_pipe = fdopen(mypipe[0], "r");
 	pinger_pipe = fdopen(mypipe[0], "r");
 	pinger_pid = pid;
 	pinger_pid = pid;
     }
     }
+
+    g_string_free(s, TRUE);
 }
 }
 
 
 /*
 /*
@@ -593,8 +595,8 @@ cb_drag_end(GtkWidget *widget, GdkDragContext *context, gpointer data)
 
 
 static gchar plugin_about_text[] =
 static gchar plugin_about_text[] =
     "GKrellM Multiping version " VERSION "\n\n\n"
     "GKrellM Multiping version " VERSION "\n\n\n"
-    "Copyright (C) 2002 by Jindrich Makovicka\n"
-    "makovick@kmlinux.fjfi.cvut.cz\n"
+    "Copyright (C) 2006 Jindrich Makovicka\n"
+    "makovick@gmail.com\n"
     "Released under the GPL.\n";
     "Released under the GPL.\n";
 
 
 static void create_plugin_config(GtkWidget * tab_vbox)
 static void create_plugin_config(GtkWidget * tab_vbox)