Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
libaec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mathis Rosenhauer
libaec
Commits
177ce617
Unverified
Commit
177ce617
authored
1 year ago
by
joobog
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix fprintf() format and VLAs (#29)
parent
8786e8c7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/check_rsi_block_access.c
+7
-5
7 additions, 5 deletions
tests/check_rsi_block_access.c
with
7 additions
and
5 deletions
tests/check_rsi_block_access.c
+
7
−
5
View file @
177ce617
...
...
@@ -43,7 +43,7 @@ static void data_generator_zero(struct aec_context *ctx)
{
size_t
nbytes
=
ctx
->
bytes_per_sample
;
if
(
ctx
->
obuf_len
%
nbytes
)
{
fprintf
(
stderr
,
"Invalid buffer_size: %
l
u
\n
"
,
ctx
->
obuf_len
);
fprintf
(
stderr
,
"Invalid buffer_size: %
z
u
\n
"
,
ctx
->
obuf_len
);
exit
(
1
);
}
...
...
@@ -65,7 +65,7 @@ static void data_generator_random(struct aec_context *ctx)
{
size_t
nbytes
=
ctx
->
bytes_per_sample
;
if
(
ctx
->
obuf_len
%
nbytes
)
{
fprintf
(
stderr
,
"Invalid buffer_size: %
l
u
\n
"
,
ctx
->
obuf_len
);
fprintf
(
stderr
,
"Invalid buffer_size: %
z
u
\n
"
,
ctx
->
obuf_len
);
exit
(
1
);
}
...
...
@@ -91,7 +91,7 @@ static void data_generator_incr(struct aec_context *ctx)
{
size_t
nbytes
=
ctx
->
bytes_per_sample
;
if
(
ctx
->
obuf_len
%
nbytes
)
{
fprintf
(
stderr
,
"Invalid buffer_size: %
l
u
\n
"
,
ctx
->
obuf_len
);
fprintf
(
stderr
,
"Invalid buffer_size: %
z
u
\n
"
,
ctx
->
obuf_len
);
exit
(
1
);
}
...
...
@@ -315,8 +315,8 @@ int test_read(struct aec_context *ctx)
size_t
num_slices
=
ctx
->
obuf_len
/
slice_size
;
size_t
remainder
=
ctx
->
obuf_len
%
slice_size
;
size_t
slice_offsets
[
num_slices
+
1
];
size_t
slice_sizes
[
num_slices
+
1
]
;
size_t
*
slice_offsets
=
malloc
((
num_slices
+
1
)
*
sizeof
(
slice_offsets
[
0
]));
size_t
*
slice_sizes
=
malloc
((
num_slices
+
1
)
*
sizeof
(
slice_sizes
[
0
]))
;
for
(
size_t
i
=
0
;
i
<
num_slices
;
++
i
)
{
slice_offsets
[
i
]
=
slice_size
*
i
;
...
...
@@ -385,6 +385,8 @@ int test_read(struct aec_context *ctx)
aec_decode_end
(
&
strm_read
);
free
(
offsets
);
free
(
slice_offsets
);
free
(
slice_sizes
);
return
status
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment