Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
datavampire
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
ds
datavampire
Commits
f5ac2a19
Commit
f5ac2a19
authored
1 year ago
by
Giulio Gaio
Browse files
Options
Downloads
Patches
Plain Diff
Added checks on data size
parent
daa87a35
No related branches found
Branches containing commit
Tags
1.0.3
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/DataVampire.cpp
+17
-0
17 additions, 0 deletions
src/DataVampire.cpp
with
17 additions
and
0 deletions
src/DataVampire.cpp
+
17
−
0
View file @
f5ac2a19
...
...
@@ -2031,6 +2031,23 @@ void DataVampire::store_data(Tango::DeviceData *cmd_value, int32_t num_samples,
__FUNCTION__
);
}
if
(((
num_cols
*
num_rows
*
num_samples
)
>
val
.
size
())
&&
(
*
attr_PostAcqRoi_read
==
true
))
{
Tango
::
Except
::
throw_exception
(
(
const
char
*
)
"Failed to store data"
,
(
const
char
*
)
"Data size too large"
,
__FUNCTION__
);
}
if
((
*
attr_PostAcqRoi_read
==
true
)
&&
(
roi_dim
==
4
))
{
if
((
num_cols
*
num_rows
*
num_samples
)
!=
(
*
attr_Width_read
*
*
attr_Height_read
*
num_samples
))
{
Tango
::
Except
::
throw_exception
(
(
const
char
*
)
"Failed to store data"
,
(
const
char
*
)
"Width/Height mismatch with image size"
,
__FUNCTION__
);
}
}
// reallocate buffer
if
(
val
.
size
()
!=
cache_buffer
[
cache_idx
].
data_size
)
{
cache_buffer
[
cache_idx
].
databuf
=
(
double
*
)
realloc
(
cache_buffer
[
cache_idx
].
databuf
,
val
.
size
()
*
sizeof
(
double
));
...
...
This diff is collapsed.
Click to expand it.
Preview
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!
Save comment
Cancel
Please
register
or
sign in
to comment