mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 09:08:04 -05:00
fixed memory leaks
This commit is contained in:
parent
077783aa2a
commit
235448d839
@ -1949,8 +1949,11 @@ static int pkcs7_print_attributes(PKCS7_SIGNED *p7_signed, PKCS7 **tmstamp_p7,
|
|||||||
value = X509_ATTRIBUTE_get0_data(attr, 0, V_ASN1_UTF8STRING, NULL);
|
value = X509_ATTRIBUTE_get0_data(attr, 0, V_ASN1_UTF8STRING, NULL);
|
||||||
if (value == NULL)
|
if (value == NULL)
|
||||||
return 0; /* FAILED */
|
return 0; /* FAILED */
|
||||||
if (verbose)
|
if (verbose) {
|
||||||
printf("Data Blob: %s\n", OPENSSL_buf2hexstr(value->data, value->length));
|
char *data_blob = OPENSSL_buf2hexstr(value->data, value->length);
|
||||||
|
printf("Data Blob: %s\n", data_blob);
|
||||||
|
OPENSSL_free(data_blob);
|
||||||
|
}
|
||||||
printf("Data Blob length: %d bytes\n", value->length);
|
printf("Data Blob length: %d bytes\n", value->length);
|
||||||
} else if (!strcmp(object_txt, SPC_NESTED_SIGNATURE_OBJID)) {
|
} else if (!strcmp(object_txt, SPC_NESTED_SIGNATURE_OBJID)) {
|
||||||
/* 1.3.6.1.4.1.311.2.4.1 */
|
/* 1.3.6.1.4.1.311.2.4.1 */
|
||||||
@ -4207,7 +4210,7 @@ static char *getpassword(const char *prompt)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
passbuf[strlen(passbuf)-1] = 0x00;
|
passbuf[strlen(passbuf)-1] = 0x00;
|
||||||
pass = strdup(passbuf);
|
pass = OPENSSL_strdup(passbuf);
|
||||||
memset(passbuf, 0, sizeof(passbuf));
|
memset(passbuf, 0, sizeof(passbuf));
|
||||||
return pass;
|
return pass;
|
||||||
#else
|
#else
|
||||||
@ -4234,7 +4237,7 @@ static int read_password(GLOBAL_OPTIONS *options)
|
|||||||
return 0; /* FAILED */
|
return 0; /* FAILED */
|
||||||
}
|
}
|
||||||
passbuf[passlen] = 0x00;
|
passbuf[passlen] = 0x00;
|
||||||
options->pass = strdup(passbuf);
|
options->pass = OPENSSL_strdup(passbuf);
|
||||||
memset(passbuf, 0, sizeof(passbuf));
|
memset(passbuf, 0, sizeof(passbuf));
|
||||||
#ifdef PROVIDE_ASKPASS
|
#ifdef PROVIDE_ASKPASS
|
||||||
} else if (options->askpass) {
|
} else if (options->askpass) {
|
||||||
@ -4427,6 +4430,8 @@ static void free_options(GLOBAL_OPTIONS *options)
|
|||||||
OPENSSL_free(options->untrusted);
|
OPENSSL_free(options->untrusted);
|
||||||
if (options->crlfile)
|
if (options->crlfile)
|
||||||
OPENSSL_free(options->crlfile);
|
OPENSSL_free(options->crlfile);
|
||||||
|
if (options->pass)
|
||||||
|
OPENSSL_free(options->pass);
|
||||||
}
|
}
|
||||||
|
|
||||||
static char *get_cafile(void)
|
static char *get_cafile(void)
|
||||||
@ -4740,7 +4745,7 @@ static void main_configure(int argc, char **argv, cmd_type_t *cmd, GLOBAL_OPTION
|
|||||||
} else if ((*cmd == CMD_SIGN) && !strcmp(*argv, "-pass")) {
|
} else if ((*cmd == CMD_SIGN) && !strcmp(*argv, "-pass")) {
|
||||||
if (options->askpass || options->readpass) usage(argv0, "all");
|
if (options->askpass || options->readpass) usage(argv0, "all");
|
||||||
if (--argc < 1) usage(argv0, "all");
|
if (--argc < 1) usage(argv0, "all");
|
||||||
options->pass = strdup(*(++argv));
|
options->pass = OPENSSL_strdup(*(++argv));
|
||||||
memset(*argv, 0, strlen(*argv));
|
memset(*argv, 0, strlen(*argv));
|
||||||
#ifdef PROVIDE_ASKPASS
|
#ifdef PROVIDE_ASKPASS
|
||||||
} else if ((*cmd == CMD_SIGN) && !strcmp(*argv, "-askpass")) {
|
} else if ((*cmd == CMD_SIGN) && !strcmp(*argv, "-askpass")) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user