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
223c422b
Commit
223c422b
authored
Aug 10, 2017
by
Jonathan Wilkes
Browse files
prevent a buffer overflow
parent
9f9c835e
Changes
1
Hide whitespace changes
Inline
Side-by-side
externals/iemlib/iemlib1/src/vcf_filter~.c
View file @
223c422b
...
...
@@ -321,7 +321,8 @@ static void *vcf_filter_tilde_new(t_symbol *filt_typ)
x
->
x_wn1
=
0
.
0
;
x
->
x_wn2
=
0
.
0
;
c
=
(
char
*
)
filt_typ
->
s_name
;
c
[
5
]
=
0
;
if
(
strlen
(
c
)
>
5
)
c
[
5
]
=
0
;
strcpy
(
x
->
x_filtname
,
c
);
return
(
x
);
}
...
...
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