Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
b04a448b
Commit
b04a448b
authored
May 10, 2016
by
Cédric Roux
Browse files
bugfix: calloc arguments' wrong order
parent
497c64a9
Changes
3
Hide whitespace changes
Inline
Side-by-side
common/utils/T/tracer/gui/xy_plot.c
View file @
b04a448b
...
...
@@ -258,8 +258,8 @@ void xy_plot_set_points(gui *_gui, widget *_this, int plot,
if
(
npoints
!=
this
->
plots
[
plot
].
npoints
)
{
free
(
this
->
plots
[
plot
].
x
);
free
(
this
->
plots
[
plot
].
y
);
this
->
plots
[
plot
].
x
=
calloc
(
sizeof
(
float
)
,
npoints
);
this
->
plots
[
plot
].
y
=
calloc
(
sizeof
(
float
)
,
npoints
);
this
->
plots
[
plot
].
x
=
calloc
(
npoints
,
sizeof
(
float
));
this
->
plots
[
plot
].
y
=
calloc
(
npoints
,
sizeof
(
float
));
this
->
plots
[
plot
].
npoints
=
npoints
;
}
...
...
common/utils/T/tracer/logger/framelog.c
View file @
b04a448b
...
...
@@ -39,9 +39,9 @@ static void _event(void *p, event e)
l
->
blength
=
nsamples
*
10
;
free
(
l
->
x
);
free
(
l
->
buffer
);
l
->
x
=
calloc
(
sizeof
(
float
)
,
l
->
blength
);
l
->
x
=
calloc
(
l
->
blength
,
sizeof
(
float
));
if
(
l
->
x
==
NULL
)
abort
();
l
->
buffer
=
calloc
(
sizeof
(
float
)
,
l
->
blength
);
l
->
buffer
=
calloc
(
l
->
blength
,
sizeof
(
float
));
if
(
l
->
buffer
==
NULL
)
abort
();
/* update 'x' */
for
(
i
=
0
;
i
<
l
->
blength
;
i
++
)
...
...
common/utils/T/tracer/view/xy.c
View file @
b04a448b
...
...
@@ -74,8 +74,8 @@ static void set(view *_this, char *name, ...)
free
(
this
->
x
);
free
(
this
->
y
);
this
->
length
=
va_arg
(
ap
,
int
);
this
->
x
=
calloc
(
sizeof
(
float
),
this
->
length
);
if
(
this
->
x
==
NULL
)
abort
();
this
->
y
=
calloc
(
sizeof
(
float
),
this
->
length
);
if
(
this
->
y
==
NULL
)
abort
();
this
->
x
=
calloc
(
this
->
length
,
sizeof
(
float
)
);
if
(
this
->
x
==
NULL
)
abort
();
this
->
y
=
calloc
(
this
->
length
,
sizeof
(
float
)
);
if
(
this
->
y
==
NULL
)
abort
();
this
->
insert_point
=
0
;
va_end
(
ap
);
...
...
@@ -104,8 +104,8 @@ view *new_view_xy(int length, float refresh_rate, gui *g, widget *w,
ret
->
plot
=
xy_plot_new_plot
(
g
,
w
,
color
);
ret
->
length
=
length
;
ret
->
x
=
calloc
(
sizeof
(
float
)
,
length
);
if
(
ret
->
x
==
NULL
)
abort
();
ret
->
y
=
calloc
(
sizeof
(
float
)
,
length
);
if
(
ret
->
y
==
NULL
)
abort
();
ret
->
x
=
calloc
(
length
,
sizeof
(
float
));
if
(
ret
->
x
==
NULL
)
abort
();
ret
->
y
=
calloc
(
length
,
sizeof
(
float
));
if
(
ret
->
y
==
NULL
)
abort
();
ret
->
insert_point
=
0
;
if
(
pthread_mutex_init
(
&
ret
->
lock
,
NULL
))
abort
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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