diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-04-21 23:31:03 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-04-30 07:44:21 -0700 |
commit | 625d4801f548acb4c797bf1add338a016dd34497 (patch) | |
tree | 5374fa44e43cf3327ad40a969425394c3e954351 | |
parent | dad7181eff372c6cb4c21e21c4edffbfe8298ad3 (diff) | |
download | subsurface-625d4801f548acb4c797bf1add338a016dd34497.tar.gz |
Uemis downloader: don't use bogus sensor data from Uemis
Sometimes we get a sensor number of 255 - which gets turned into a tank
index and then causes all kinds of havoc. Simply refuse to use a tank
number larger than the maximum Subsurface has been compiled for.
Oh, and use consistent variables to handle these unsigned 8 bit integers.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | uemis.c | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -292,7 +292,7 @@ void uemis_parse_divelog_binary(char *base64, void *datap) struct dive *dive = datap; struct divecomputer *dc = &dive->dc; int template, gasoffset; - int active = 0; + uint8_t active = 0; char version[5]; datalen = uemis_convert_base64(base64, &data); @@ -341,10 +341,13 @@ void uemis_parse_divelog_binary(char *base64, void *datap) i = 0x123; u_sample = (uemis_sample_t *)(data + i); while ((i <= datalen) && (data[i] != 0 || data[i+1] != 0)) { - /* it seems that a dive_time of 0 indicates the end of the valid readings */ if (u_sample->active_tank != active) { - active = u_sample->active_tank; - add_gas_switch_event(dive, dc, u_sample->dive_time, active); + if (u_sample->active_tank >= MAX_CYLINDERS) { + fprintf(stderr, "got invalid sensor #%d was #%d\n", u_sample->active_tank, active); + } else { + active = u_sample->active_tank; + add_gas_switch_event(dive, dc, u_sample->dive_time, active); + } } sample = prepare_sample(dc); sample->time.seconds = u_sample->dive_time; |