diff options
author | tron <tron@pkgsrc.org> | 2002-06-12 13:55:06 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2002-06-12 13:55:06 +0000 |
commit | d8a241a0244c272337a736e4f2f7c83b697be032 (patch) | |
tree | 095b559f4e14b102ed91c7db03be4d7c31440aaa /misc/bidwatcher | |
parent | e865689d2dcaae3b827c6f7fda7552662ef5cfeb (diff) | |
download | pkgsrc-d8a241a0244c272337a736e4f2f7c83b697be032.tar.gz |
Initialize buffer point to "NULL" in fetchURL() to avoid problem when
free(3) is used later.
Diffstat (limited to 'misc/bidwatcher')
-rw-r--r-- | misc/bidwatcher/distinfo | 3 | ||||
-rw-r--r-- | misc/bidwatcher/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/misc/bidwatcher/distinfo b/misc/bidwatcher/distinfo index 596757b99c9..a6737f5077b 100644 --- a/misc/bidwatcher/distinfo +++ b/misc/bidwatcher/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.9 2002/06/10 15:58:35 tron Exp $ +$NetBSD: distinfo,v 1.10 2002/06/12 13:55:06 tron Exp $ SHA1 (bidwatcher-1.3.4-fix.tar.gz) = cc891a06f7a0e4e7d610198569a3ca3066111a34 Size (bidwatcher-1.3.4-fix.tar.gz) = 144948 bytes +SHA1 (patch-aa) = 4004bf26790989c0bf3f751f1070033c198e22b5 diff --git a/misc/bidwatcher/patches/patch-aa b/misc/bidwatcher/patches/patch-aa new file mode 100644 index 00000000000..ce07ffcefce --- /dev/null +++ b/misc/bidwatcher/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.7 2002/06/12 13:55:06 tron Exp $ + +--- netstuff.cpp.orig Thu Jun 6 03:52:08 2002 ++++ netstuff.cpp Wed Jun 12 15:51:57 2002 +@@ -247,6 +247,8 @@ + fd_set fds; + struct timeval tm; + ++ *Buff = NULL; ++ + GTimer * time_since_start=g_timer_new(); + g_timer_start(time_since_start); + |