summaryrefslogtreecommitdiffstats
path: root/firmware/os/core/hostIntf.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/os/core/hostIntf.c')
-rw-r--r--firmware/os/core/hostIntf.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/firmware/os/core/hostIntf.c b/firmware/os/core/hostIntf.c
index ccd571d8..c1d3cd0a 100644
--- a/firmware/os/core/hostIntf.c
+++ b/firmware/os/core/hostIntf.c
@@ -739,7 +739,18 @@ static bool initSensors()
}
mOutputQ = simpleQueueAlloc(totalBlocks, sizeof(struct HostIntfDataBuffer), queueDiscard);
+ if (!mOutputQ) {
+ osLog(LOG_ERROR, "initSensors: failed to allocate data buffer queue!\n");
+ return false;
+ }
+
mActiveSensorTable = heapAlloc(numSensors * sizeof(struct ActiveSensor));
+ if (!mActiveSensorTable) {
+ osLog(LOG_ERROR, "initSensors: failed to allocate active sensor table!\n");
+ simpleQueueDestroy(mOutputQ);
+ return false;
+ }
+
memset(mActiveSensorTable, 0x00, numSensors * sizeof(struct ActiveSensor));
for (i = SENS_TYPE_INVALID; i < SENS_TYPE_LAST_USER; i++) {