Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
mobile_robotics
wolf_projects
wolf_lib
wolf
Merge requests
!126
Miscellaneous
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Miscellaneous
stuff
into
master
Overview
2
Commits
9
Pipelines
0
Changes
2
Merged
Jeremie Deray
requested to merge
stuff
into
master
7 years ago
Overview
2
Commits
9
Pipelines
0
Changes
2
Expand
Export missing
factory.h
header
couple of
emplace_back
rather than
push_back
some const reference
Vector5s
&
Affine3ds
types
WOLF_ASSERT_COVARIANCE_MATRIX
assert macro & helper functions
check for some
nullptr
0
0
Merge request reports
Viewing commit
51e0b5e3
Prev
Next
Show latest version
2 files
+
7
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
51e0b5e3
check nullptr in SensorBase/ProcessorMotion Process()
· 51e0b5e3
Jeremie Deray
authored
7 years ago
src/processor_motion.cpp
+
5
−
1
Options
@@ -35,7 +35,11 @@ ProcessorMotion::~ProcessorMotion()
void
ProcessorMotion
::
process
(
CaptureBasePtr
_incoming_ptr
)
{
if
(
_incoming_ptr
==
nullptr
)
{
WOLF_ERROR
(
"Process got a nullptr !"
);
return
;
}
if
(
status_
==
IDLE
)
{
Loading