Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e118218f
Commit
e118218f
authored
Jan 07, 1996
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(alloca): If malloc fails, just abort.
parent
3e8258e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
src/alloca.c
src/alloca.c
+3
-0
No files found.
src/alloca.c
View file @
e118218f
...
...
@@ -209,6 +209,9 @@ alloca (size)
register
pointer
new
=
malloc
(
sizeof
(
header
)
+
size
);
/* Address of header. */
if
(
new
==
0
)
abort
();
((
header
*
)
new
)
->
h
.
next
=
last_alloca_header
;
((
header
*
)
new
)
->
h
.
deep
=
depth
;
...
...
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