diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-02-28 09:25:43 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-02-28 09:25:43 +0000 |
commit | cd91ecec6fc71cedb832f0a744d5f4d1688b0f41 (patch) | |
tree | 748745e22eef142d50d3918566bd81d579f1970a /japanese | |
parent | Make sure fd 2 won't be pointing to the dictionary file, so that (diff) |
Don't free() the same region twice.
Submitted by: Naoki Hamada <nao@sbl.cl.nec.co.jp>
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/FreeWnn-lib/files/patch-ac | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/japanese/FreeWnn-lib/files/patch-ac b/japanese/FreeWnn-lib/files/patch-ac new file mode 100644 index 000000000000..a5d7d6c8f550 --- /dev/null +++ b/japanese/FreeWnn-lib/files/patch-ac @@ -0,0 +1,10 @@ +--- ./Wnn/jserver/readfile.c.org Thu Sep 24 15:35:47 1992 ++++ ./Wnn/jserver/readfile.c Fri Feb 28 01:13:46 1997 +@@ -423,6 +423,7 @@ + + jt2 = (struct JT *)malloc(sizeof(struct JT)); + *jt2 = *jt1; ++ jt2->node = 0; + + if(alloc_dict(jt2) == -1){ + free(jt2); |