Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(285)

Side by Side Diff: patches/x509_hash_name_algorithm_change.patch

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« openssl.gyp ('K') | « patches/snap_start.patch ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 --- openssl-1.0.0f-origin/crypto/x509/by_dir.c 2012-01-19 02:20:24.821550944 +0 800
2 +++ openssl-1.0.0f/crypto/x509/by_dir.c 2012-01-19 23:36:53.597870429 +0800
3 @@ -287,6 +287,8 @@
4 int ok=0;
5 int i,j,k;
6 unsigned long h;
7 + unsigned long hash_array[2];
8 + int hash_index;
9 BUF_MEM *b=NULL;
10 X509_OBJECT stmp,*tmp;
11 const char *postfix="";
12 @@ -323,6 +325,11 @@
13 ctx=(BY_DIR *)xl->method_data;
14
15 h=X509_NAME_hash(name);
16 + hash_array[0]=h;
17 + hash_array[1]=X509_NAME_hash_old(name);
18 + for (hash_index=0; hash_index < 2; hash_index++)
19 + {
20 + h=hash_array[hash_index];
joth 2012/01/20 11:01:08 ouch. again a unfortunate side effect but this tim
Johnny(Jianning) Ding 2012/01/23 14:20:57 Done.
21 for (i=0; i < sk_BY_DIR_ENTRY_num(ctx->dirs); i++)
22 {
23 BY_DIR_ENTRY *ent;
24 @@ -476,6 +483,7 @@
25 goto finish;
26 }
27 }
28 + }
29 finish:
30 if (b != NULL) BUF_MEM_free(b);
31 return(ok);
OLDNEW
« openssl.gyp ('K') | « patches/snap_start.patch ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698