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

Side by Side Diff: openssl/crypto/engine/enginetest.c

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
« no previous file with comments | « openssl/crypto/engine/engine.h ('k') | openssl/crypto/engine/tb_asnmth.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* crypto/engine/enginetest.c */ 1 /* crypto/engine/enginetest.c */
2 /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL 2 /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL
3 * project 2000. 3 * project 2000.
4 */ 4 */
5 /* ==================================================================== 5 /* ====================================================================
6 * Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved. 6 * Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 if(new_h1) ENGINE_free(new_h1); 269 if(new_h1) ENGINE_free(new_h1);
270 if(new_h2) ENGINE_free(new_h2); 270 if(new_h2) ENGINE_free(new_h2);
271 if(new_h3) ENGINE_free(new_h3); 271 if(new_h3) ENGINE_free(new_h3);
272 if(new_h4) ENGINE_free(new_h4); 272 if(new_h4) ENGINE_free(new_h4);
273 for(loop = 0; loop < 512; loop++) 273 for(loop = 0; loop < 512; loop++)
274 if(block[loop]) 274 if(block[loop])
275 ENGINE_free(block[loop]); 275 ENGINE_free(block[loop]);
276 ENGINE_cleanup(); 276 ENGINE_cleanup();
277 CRYPTO_cleanup_all_ex_data(); 277 CRYPTO_cleanup_all_ex_data();
278 ERR_free_strings(); 278 ERR_free_strings();
279 » ERR_remove_state(0); 279 » ERR_remove_thread_state(NULL);
280 CRYPTO_mem_leaks_fp(stderr); 280 CRYPTO_mem_leaks_fp(stderr);
281 return to_return; 281 return to_return;
282 } 282 }
283 #endif 283 #endif
OLDNEW
« no previous file with comments | « openssl/crypto/engine/engine.h ('k') | openssl/crypto/engine/tb_asnmth.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698