diff options
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | emu/MacOSX/os.c | 2 | ||||
| -rw-r--r-- | include/version.h | 2 | ||||
| -rw-r--r-- | libinterp/crypt.c | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -1,3 +1,5 @@ +20110126 + emu/MacOSX/os.c - move a free to a more sensible place 20110117 emu/Nt/ipif.c changed to work with ipv6 interface changes 20110116 diff --git a/emu/MacOSX/os.c b/emu/MacOSX/os.c index 10a3cf0f..0b161e50 100644 --- a/emu/MacOSX/os.c +++ b/emu/MacOSX/os.c @@ -96,8 +96,8 @@ pexit(char *msg, int t) closepgrp(e->pgrp); closeegrp(e->egrp); closesigs(e->sigs); + free(e->user); } - free(e->user); free(p->prog); sem = p->os; if(sem != nil){ diff --git a/include/version.h b/include/version.h index f092c2ad..6f3440f2 100644 --- a/include/version.h +++ b/include/version.h @@ -1 +1 @@ -#define VERSION "Fourth Edition (20110117)" +#define VERSION "Fourth Edition (20110126)" diff --git a/libinterp/crypt.c b/libinterp/crypt.c index 998e6d91..ae6d8575 100644 --- a/libinterp/crypt.c +++ b/libinterp/crypt.c @@ -46,8 +46,6 @@ static uchar RSAskmap[] = Crypt_SK_RSA_map; static uchar RSApkmap[] = Crypt_PK_RSA_map; static uchar RSAsigmap[] = Crypt_PKsig_RSA_map; -static char exBadSK[] = "bad secret key"; -static char exBadPK[] = "bad public key"; static char exBadBsize[] = "data not multiple of block size"; static char exBadKey[] = "bad encryption key"; static char exBadDigest[] = "bad digest value"; |
