Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
45fab61d
Commit
45fab61d
authored
Nov 08, 2006
by
Hisham Muhammad
Browse files
Avoid double free of prototype's comm.
parent
8adc7ac0
Changes
1
Hide whitespace changes
Inline
Side-by-side
ProcessList.c
View file @
45fab61d
...
...
@@ -526,7 +526,10 @@ void ProcessList_processEntries(ProcessList* this, char* dirname, int parent, fl
assert
(
process
->
pid
==
pid
);
}
else
{
process
=
prototype
;
process
->
comm
=
NULL
;
if
(
process
->
comm
)
{
free
(
process
->
comm
);
process
->
comm
=
NULL
;
}
process
->
pid
=
pid
;
if
(
!
ProcessList_readStatusFile
(
this
,
process
,
dirname
,
name
))
goto
errorReadingProcess
;
...
...
@@ -608,9 +611,6 @@ void ProcessList_processEntries(ProcessList* this, char* dirname, int parent, fl
errorReadingProcess:
{
if
(
existingProcess
)
ProcessList_remove
(
this
,
process
);
else
{
if
(
process
->
comm
)
free
(
process
->
comm
);
}
}
}
...
...
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