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
ac847e32
Commit
ac847e32
authored
17 years ago
by
Michael Snyder
Committed by
DJ Delorie
17 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cp-demangle.c (d_print_comp): Guard against null.
From-SVN: r127139
parent
870c06b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
libiberty/ChangeLog
+4
-0
libiberty/cp-demangle.c
+6
-0
No files found.
libiberty/ChangeLog
View file @
ac847e32
2007-07-31 Michael Snyder <msnyder@access-company.com>
* cp-demangle.c (d_print_comp): Guard against null.
2007-07-25 Ben Elliston <bje@au.ibm.com>
* Makefile.in (CFILES): Remove ternary.c.
...
...
This diff is collapsed.
Click to expand it.
libiberty/cp-demangle.c
View file @
ac847e32
...
...
@@ -2912,6 +2912,12 @@ d_print_comp (struct d_print_info *dpi,
typed_name
=
d_left
(
typed_name
);
}
if
(
typed_name
==
NULL
)
{
d_print_error
(
dpi
);
return
;
}
/* If typed_name is a template, then it applies to the
function type as well. */
if
(
typed_name
->
type
==
DEMANGLE_COMPONENT_TEMPLATE
)
...
...
This diff is collapsed.
Click to expand it.
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