X-Git-Url: https://git.ao2.it/visomat-utils.git/blobdiff_plain/b11c925b57646ed4376c7966de1e3ede0f6a8365..HEAD:/src/visomat-data-downloader.c diff --git a/src/visomat-data-downloader.c b/src/visomat-data-downloader.c index a3282ba..1cbe6f5 100644 --- a/src/visomat-data-downloader.c +++ b/src/visomat-data-downloader.c @@ -234,7 +234,7 @@ static int decode_eeprom(uint8_t *buffer, static int decode_datetime(uint8_t *buffer, unsigned int len) { int ret; - uint8_t code[4] = { 0 }; + uint8_t code[4] = { 0 }; /* the initial STX + 3 bytes command code */ struct datetime d; uint8_t *pbuffer = buffer; @@ -245,7 +245,7 @@ static int decode_datetime(uint8_t *buffer, unsigned int len) code[1] = buffer[2]; code[2] = buffer[3]; - ret = extract_datetime(pbuffer + 4, &d); + ret = extract_datetime(pbuffer + sizeof(code), &d); if (ret < 0) return ret;