Skip to content

Commit

Permalink
node: init ctor (coverity)
Browse files Browse the repository at this point in the history
  • Loading branch information
vooon committed Aug 26, 2014
1 parent 9607463 commit 4068b92
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion mavros/src/lib/uas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,16 @@ UAS::UAS() :
autopilot(MAV_AUTOPILOT_GENERIC),
target_system(1),
target_component(1),
connected(false)
connected(false),
angular_velocity{},
linear_acceleration{},
orientation{},
gps_latitude(0),
gps_longitude(0),
gps_altitude(0),
gps_eph(0),
gps_epv(0),
fix_status(0)
{
}

Expand Down

0 comments on commit 4068b92

Please sign in to comment.