diff options
author | Andy Polyakov <appro@openssl.org> | 2006-09-18 19:41:37 +0000 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2006-09-18 19:41:37 +0000 |
commit | b774111020a087a85ea4e77778e2f5da20949e65 (patch) | |
tree | f622d1d688909ff0b56eb8b88b0eff30b8ed6a56 /ms/uplink.c | |
parent | 78260d890bd3f756e11c1bd43d573eb66829f2a6 (diff) | |
download | openssl-new-b774111020a087a85ea4e77778e2f5da20949e65.tar.gz |
Race condition in ms/uplink.c.
PR: 1382
Diffstat (limited to 'ms/uplink.c')
-rw-r--r-- | ms/uplink.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ms/uplink.c b/ms/uplink.c index 8e2eaa8ffd..7b7da08d47 100644 --- a/ms/uplink.c +++ b/ms/uplink.c @@ -71,6 +71,8 @@ void OPENSSL_Uplink (volatile void **table, int index) } applinktable = p; } + else + p = applinktable; if (index > (int)p[0]) break; |