diff options
author | Joerg Wunsch <joerg@FreeBSD.org> | 1996-09-01 16:37:00 +0000 |
---|---|---|
committer | Joerg Wunsch <joerg@FreeBSD.org> | 1996-09-01 16:37:00 +0000 |
commit | b19d0e49c4262bc205536f2ba7f78a0a184f1814 (patch) | |
tree | 391f39fa7b591c94f7a37107125523b934afab64 /comms | |
parent | 18666fbe54f8ba84c1d947764725dc853e7d0e79 (diff) | |
download | ports-b19d0e49c4262bc205536f2ba7f78a0a184f1814.tar.gz ports-b19d0e49c4262bc205536f2ba7f78a0a184f1814.zip |
Notes
Diffstat (limited to 'comms')
-rw-r--r-- | comms/xcept/files/patch-af | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/comms/xcept/files/patch-af b/comms/xcept/files/patch-af new file mode 100644 index 000000000000..002dbba6106b --- /dev/null +++ b/comms/xcept/files/patch-af @@ -0,0 +1,10 @@ +--- xcept/script.c.orig Sun Sep 1 18:24:46 1996 ++++ xcept/script.c Sun Sep 1 18:32:08 1996 +@@ -809,7 +809,6 @@ + if(a->value == b->value) + return error("pc: %d - variables don't differ!\n",pc); + len = strlen(a->value) + strlen(b->value) + 1; +- free(a->value); + if(!(a->value = ralloc(a->value,len))) return errorp("realloc\n"); + strcat(a->value,b->value); + |