diff options
author | Richard Levitte <levitte@openssl.org> | 2004-01-24 01:24:42 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2004-01-24 01:24:42 +0000 |
commit | dd85f8e4771f43809b9527fb78df7316fb04283c (patch) | |
tree | 7f77fc4fb57464ecd7bdd9a4d8a45a149a49d368 /crypto/err/err.c | |
parent | 2bff903483e5d330e06cd1c6e9a120c5dcfb7912 (diff) | |
download | openssl-new-dd85f8e4771f43809b9527fb78df7316fb04283c.tar.gz |
Recent changes from 0.9.8-dev.
Diffstat (limited to 'crypto/err/err.c')
-rw-r--r-- | crypto/err/err.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/err/err.c b/crypto/err/err.c index 9540394e3a..439b071ac9 100644 --- a/crypto/err/err.c +++ b/crypto/err/err.c @@ -606,12 +606,12 @@ static void build_SYS_str_reasons() #define err_clear(p,i) \ do { \ - es->err_flags[i]=0; \ - es->err_buffer[i]=0; \ + (p)->err_flags[i]=0; \ + (p)->err_buffer[i]=0; \ err_clear_data(p,i); \ err_clear_file(p,i); \ - es->err_file[i]=NULL; \ - es->err_line[i]= -1; \ + (p)->err_file[i]=NULL; \ + (p)->err_line[i]= -1; \ } while(0) static void ERR_STATE_free(ERR_STATE *s) |