projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d5c3c1
)
We're passed p, so let's use p instead of making assumptions.
author
Richard Levitte
<levitte@openssl.org>
Sat, 24 Jan 2004 01:16:02 +0000
(
01:16
+0000)
committer
Richard Levitte
<levitte@openssl.org>
Sat, 24 Jan 2004 01:16:02 +0000
(
01:16
+0000)
crypto/err/err.c
patch
|
blob
|
history
diff --git
a/crypto/err/err.c
b/crypto/err/err.c
index 04cea41d0df8e5d9e056779877b931f86ffc7eea..e28ec56ffa6a82ffc165cb9b58a9dfee3a6015d0 100644
(file)
--- a/
crypto/err/err.c
+++ b/
crypto/err/err.c
@@
-594,11
+594,11
@@
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); \
-
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)