Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
ff3edc09
Commit
ff3edc09
authored
Feb 03, 2018
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Fix potential memory leak
parent
0bb15406
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/shrpx_tls.cc
src/shrpx_tls.cc
+2
-1
No files found.
src/shrpx_tls.cc
View file @
ff3edc09
...
...
@@ -1934,6 +1934,8 @@ StringRef get_x509_name(BlockAllocator &balloc, X509_NAME *nm) {
return
StringRef
{};
}
auto
b_deleter
=
defer
(
BIO_free
,
b
);
// Not documented, but it seems that X509_NAME_print_ex returns the
// number of bytes written into b.
auto
slen
=
X509_NAME_print_ex
(
b
,
nm
,
0
,
XN_FLAG_RFC2253
);
...
...
@@ -1943,7 +1945,6 @@ StringRef get_x509_name(BlockAllocator &balloc, X509_NAME *nm) {
auto
iov
=
make_byte_ref
(
balloc
,
slen
+
1
);
BIO_read
(
b
,
iov
.
base
,
slen
);
BIO_free
(
b
);
iov
.
base
[
slen
]
=
'\0'
;
return
StringRef
{
iov
.
base
,
static_cast
<
size_t
>
(
slen
)};
}
...
...
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