Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nerrons
purr-data
Commits
e294b129
Commit
e294b129
authored
Aug 10, 2017
by
Jonathan Wilkes
Browse files
fix invalid read when no args are supplied
parent
8d80f47c
Changes
1
Hide whitespace changes
Inline
Side-by-side
externals/zexy/src/strcmp.c
View file @
e294b129
...
...
@@ -79,7 +79,7 @@ static void list2binbuf(t_binbuf**bbuf, int *n, char**str, int argc,
i
=*
n
;
s
=*
str
;
if
(
' '
==
s
[
i
])
{
if
(
s
&&
' '
==
s
[
i
])
{
s
[
i
]
=
0
;
}
}
...
...
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