From 754e9a0dddc4971304036ad02594f5e2b764889c Mon Sep 17 00:00:00 2001 From: ben Date: Fri, 5 Jan 2001 22:38:09 +0000 Subject: Add a patch to fix a couple of memory handling problems which show up with MALLOC_OPTIONS=AJ. --- net/nstreams/files/patch-aa | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 net/nstreams/files/patch-aa (limited to 'net/nstreams') diff --git a/net/nstreams/files/patch-aa b/net/nstreams/files/patch-aa new file mode 100644 index 00000000000..1180995d5d3 --- /dev/null +++ b/net/nstreams/files/patch-aa @@ -0,0 +1,26 @@ +--- src/nstreams.c Thu Nov 11 22:13:14 1999 ++++ src/nstreams.c Fri Dec 29 07:04:41 2000 +@@ -179,6 +179,7 @@ + char * output_name = NULL; + + ++ bzero(cache, sizeof(struct cache)); + + + parser = parse_tcpdump_line; +--- src/output.c Thu Nov 11 22:13:15 1999 ++++ src/output.c Fri Dec 29 07:20:51 2000 +@@ -122,11 +122,11 @@ + else { + ret->sports = malloc(10); + sprintf(ret->sports, "%d", ret->sport); +- realloc(ret->sports, strlen(ret->sports)+1); ++ ret->sports = realloc(ret->sports, strlen(ret->sports)+1); + + ret->dports = malloc(10); + sprintf(ret->dports, "%d", ret->dport); +- realloc(ret->dports, strlen(ret->dports)+1); ++ ret->dports = realloc(ret->dports, strlen(ret->dports)+1); + } + + ret->show_net = shownet; -- cgit