Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
afce7deb
Commit
afce7deb
authored
Jul 28, 2017
by
Tony Reix
Committed by
Ian Lance Taylor
Jul 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* xcoff.c: Don't leak a file descriptor if an archive is malformed.
From-SVN: r250684
parent
9761988f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
libbacktrace/ChangeLog
+4
-0
libbacktrace/xcoff.c
+5
-4
No files found.
libbacktrace/ChangeLog
View file @
afce7deb
2017-07-28 Tony Reix <tony.reix@atos.net>
* xcoff.c: Don't leak a file descriptor if an archive is malformed.
2017-07-28 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* fileline.c (fileline_initialize): Print pid_t as long.
...
...
libbacktrace/xcoff.c
View file @
afce7deb
...
...
@@ -1288,20 +1288,20 @@ xcoff_armem_add (struct backtrace_state *state, int descriptor,
if
(
!
backtrace_get_view
(
state
,
descriptor
,
0
,
sizeof
(
b_ar_fl_hdr
),
error_callback
,
data
,
&
view
))
return
0
;
goto
fail
;
memcpy
(
&
fl_hdr
,
view
.
data
,
sizeof
(
b_ar_fl_hdr
));
backtrace_release_view
(
state
,
&
view
,
error_callback
,
data
);
if
(
memcmp
(
fl_hdr
.
fl_magic
,
AIAMAGBIG
,
8
)
!=
0
)
return
0
;
goto
fail
;
memlen
=
strlen
(
member
);
/* Read offset of first archive member. */
if
(
!
xcoff_parse_decimal
(
fl_hdr
.
fl_fstmoff
,
sizeof
fl_hdr
.
fl_fstmoff
,
&
off
))
return
0
;
goto
fail
;
while
(
off
!=
0
)
{
/* Map archive member header and member name. */
...
...
@@ -1309,7 +1309,7 @@ xcoff_armem_add (struct backtrace_state *state, int descriptor,
if
(
!
backtrace_get_view
(
state
,
descriptor
,
off
,
sizeof
(
b_ar_hdr
)
+
memlen
,
error_callback
,
data
,
&
view
))
return
0
;
break
;
ar_hdr
=
(
const
b_ar_hdr
*
)
view
.
data
;
...
...
@@ -1345,6 +1345,7 @@ xcoff_armem_add (struct backtrace_state *state, int descriptor,
backtrace_release_view
(
state
,
&
view
,
error_callback
,
data
);
}
fail:
/* No matching member found. */
backtrace_close
(
descriptor
,
error_callback
,
data
);
return
0
;
...
...
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