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
c35a847e
Commit
c35a847e
authored
Nov 05, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(objc_read_string): Allocate string properly.
From-SVN: r6013
parent
a5b1eb34
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/objc/archive.c
+5
-2
No files found.
gcc/objc/archive.c
View file @
c35a847e
...
@@ -617,8 +617,11 @@ objc_read_string (struct objc_typed_stream* stream,
...
@@ -617,8 +617,11 @@ objc_read_string (struct objc_typed_stream* stream,
case
_B_UCOMM
:
case
_B_UCOMM
:
{
{
len
=
__objc_read_nbyte_uint
(
stream
,
(
buf
[
0
]
&
_B_VALUE
),
&
key
);
char
*
tmp
;
(
*
string
)
=
hash_value_for_key
(
stream
->
stream_table
,
(
void
*
)
key
);
len
=
__objc_read_nbyte_uint
(
stream
,
(
buf
[
0
]
&
_B_VALUE
),
&
key
);
tmp
=
hash_value_for_key
(
stream
->
stream_table
,
(
void
*
)
key
);
*
string
=
__objc_xmalloc
(
strlen
(
tmp
)
+
1
);
strcpy
(
*
string
,
tmp
);
}
}
break
;
break
;
...
...
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