Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a57c4026
Commit
a57c4026
authored
Feb 19, 2001
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(malloc_initialize_hook): Handle case thet `environ'
is null.
parent
aeac019e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
src/ChangeLog
src/ChangeLog
+3
-0
src/emacs.c
src/emacs.c
+1
-1
No files found.
src/ChangeLog
View file @
a57c4026
2001-02-19 Gerd Moellmann <gerd@gnu.org>
2001-02-19 Gerd Moellmann <gerd@gnu.org>
* emacs.c (malloc_initialize_hook): Handle case thet `environ'
is null.
* ralloc.c (__morecore) [!SYSTEM_MALLOC]: Move declaration
* ralloc.c (__morecore) [!SYSTEM_MALLOC]: Move declaration
to the start of the file.
to the start of the file.
...
...
src/emacs.c
View file @
a57c4026
...
@@ -675,7 +675,7 @@ malloc_initialize_hook ()
...
@@ -675,7 +675,7 @@ malloc_initialize_hook ()
{
{
char
**
p
;
char
**
p
;
for
(
p
=
environ
;
*
p
;
p
++
)
for
(
p
=
environ
;
p
&&
*
p
;
p
++
)
if
(
strncmp
(
*
p
,
"MALLOC_CHECK_="
,
14
)
==
0
)
if
(
strncmp
(
*
p
,
"MALLOC_CHECK_="
,
14
)
==
0
)
{
{
do
do
...
...
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