Skip to content

Commit

Permalink
Fix symbol shadow
Browse files Browse the repository at this point in the history
Reviewed-by: Rich Salz <[email protected]>
(Merged from openssl#2663)
  • Loading branch information
levitte committed Feb 17, 2017
1 parent a9998e2 commit d2b53fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crypto/mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,16 +117,16 @@ static void parseit(void)
static int shouldfail(void)
{
int roll = (int)(random() % 100);
int shouldfail = roll < md_fail_percent;
int shoulditfail = roll < md_fail_percent;
char buff[80];

if (md_tracefd > 0) {
BIO_snprintf(buff, sizeof(buff),
"%c C%ld %%%d R%d\n",
shouldfail ? '-' : '+', md_count, md_fail_percent, roll);
shoulditfail ? '-' : '+', md_count, md_fail_percent, roll);
write(md_tracefd, buff, strlen(buff));
#ifndef OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE
if (shouldfail) {
if (shoulditfail) {
void *addrs[30];
int num = backtrace(addrs, OSSL_NELEM(addrs));

Expand All @@ -141,7 +141,7 @@ static int shouldfail(void)
parseit();
}

return shouldfail;
return shoulditfail;
}

void ossl_malloc_setup_failures(void)
Expand Down

0 comments on commit d2b53fc

Please sign in to comment.