Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Rishabh Gupta
purr-data
Commits
1d2c18f4
Commit
1d2c18f4
authored
Mar 26, 2013
by
Ivica Bukvic
Browse files
removed unnecessary dereferencing
parent
3fd7559f
Changes
2
Hide whitespace changes
Inline
Side-by-side
pd/src/m_binbuf.c
View file @
1d2c18f4
...
...
@@ -62,7 +62,6 @@ void binbuf_free(t_binbuf *x)
{
t_freebytes
(
x
->
b_vec
,
x
->
b_n
*
sizeof
(
*
x
->
b_vec
));
t_freebytes
(
x
,
sizeof
(
*
x
));
x
=
NULL
;
}
t_binbuf
*
binbuf_duplicate
(
t_binbuf
*
y
)
...
...
pd/src/m_pd.c
View file @
1d2c18f4
...
...
@@ -49,7 +49,6 @@ void pd_free(t_pd *x)
binbuf_free
(((
t_object
*
)
x
)
->
ob_binbuf
);
}
if
(
c
->
c_size
)
t_freebytes
(
x
,
c
->
c_size
);
x
=
NULL
;
}
void
gobj_save
(
t_gobj
*
x
,
t_binbuf
*
b
)
...
...
Write
Preview
Supports
Markdown
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