Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
9.2.2023: Due to updates GitLab will be unavailable for some minutes between 9:00 and 11:00.
Open sidebar
dcdb
dcdb
Commits
96a3096c
Commit
96a3096c
authored
Mar 01, 2021
by
Michael Ott
Browse files
Fix yet another segfault within the queries loop
parent
a9e4962b
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools/dcdbquery/query.cpp
View file @
96a3096c
...
...
@@ -428,7 +428,9 @@ void DCDBQuery::execute() {
continue
;
}
}
it
++
;
if
(
it
!=
range
.
second
)
{
it
++
;
}
}
// Query raw values next
...
...
@@ -446,7 +448,9 @@ void DCDBQuery::execute() {
prevSensorName
=
q
->
first
.
name
;
}
q
++
;
if
(
q
!=
queries
.
end
())
{
q
++
;
}
}
}
...
...
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