Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Commits
b87d76b0
Commit
b87d76b0
authored
May 11, 2004
by
rswindell
Browse files
Bugfix (segfault) in strListFree().
parent
10193126
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/xpdev/str_list.c
src/xpdev/str_list.c
+2
-2
No files found.
src/xpdev/str_list.c
View file @
b87d76b0
...
...
@@ -77,8 +77,8 @@ void strListFree(char*** list)
if
(
*
list
!=
NULL
)
{
for
(
i
=
0
;
*
list
[
i
]
!=
NULL
;
i
++
)
free
(
*
list
[
i
]);
for
(
i
=
0
;
(
*
list
)
[
i
]
!=
NULL
;
i
++
)
free
(
(
*
list
)
[
i
]);
free
(
*
list
);
}
...
...
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