init shmem early to avoid random crash in fastrpc (#6407)

* init shmem early to avoid possible crash

* fix_code_style

* Keep the initialziation to NULL, remove the duplicate memory allocation
This commit is contained in:
Larry Wang
2017-01-20 23:30:46 -08:00
committed by Lorenz Meier
parent 7aea2ca030
commit 1beb2911e2
3 changed files with 2 additions and 2 deletions
-2
View File
@@ -449,7 +449,6 @@ uORB::DeviceNode::publish(const orb_metadata *meta, orb_advert_t handle, const v
return ERROR;
}
#if !defined(__PX4_QURT_EXCELSIOR) && !defined(__PX4_POSIX_EXCELSIOR)
/*
* if the write is successful, send the data over the Multi-ORB link
*/
@@ -463,7 +462,6 @@ uORB::DeviceNode::publish(const orb_metadata *meta, orb_advert_t handle, const v
}
}
#endif
return PX4_OK;
}