Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
f2b3ac63
Commit
f2b3ac63
authored
Aug 16, 2019
by
Paul Beesley
Committed by
TrustedFirmware Code Review
Aug 16, 2019
Browse files
Merge "Reduce the number of memory leaks in cert_create" into integration
parents
04fb777f
65ec13bc
Changes
3
Hide whitespace changes
Inline
Side-by-side
tools/cert_create/src/ext.c
View file @
f2b3ac63
/*
/*
* Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2015
-2019
, ARM Limited and Contributors. All rights reserved.
*
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: BSD-3-Clause
*/
*/
...
@@ -284,6 +284,7 @@ X509_EXTENSION *ext_new_key(int nid, int crit, EVP_PKEY *k)
...
@@ -284,6 +284,7 @@ X509_EXTENSION *ext_new_key(int nid, int crit, EVP_PKEY *k)
ex
=
ext_new
(
nid
,
crit
,
p
,
sz
);
ex
=
ext_new
(
nid
,
crit
,
p
,
sz
);
/* Clean up */
/* Clean up */
BIO_free
(
mem
);
OPENSSL_free
(
p
);
OPENSSL_free
(
p
);
return
ex
;
return
ex
;
...
...
tools/cert_create/src/key.c
View file @
f2b3ac63
/*
/*
* Copyright (c) 2015-201
7
, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2015-201
9
, ARM Limited and Contributors. All rights reserved.
*
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: BSD-3-Clause
*/
*/
...
@@ -73,6 +73,7 @@ static int key_create_rsa(key_t *key)
...
@@ -73,6 +73,7 @@ static int key_create_rsa(key_t *key)
goto
err
;
goto
err
;
}
}
BN_free
(
e
);
return
1
;
return
1
;
err:
err:
RSA_free
(
rsa
);
RSA_free
(
rsa
);
...
...
tools/cert_create/src/main.c
View file @
f2b3ac63
/*
/*
* Copyright (c) 2015-201
7
, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2015-201
9
, ARM Limited and Contributors. All rights reserved.
*
*
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: BSD-3-Clause
*/
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment