summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/datatrak.h23
1 files changed, 8 insertions, 15 deletions
diff --git a/core/datatrak.h b/core/datatrak.h
index c207e3baf..7f79237ef 100644
--- a/core/datatrak.h
+++ b/core/datatrak.h
@@ -48,29 +48,22 @@ extern struct sample *add_sample(struct sample *sample, int time, struct divecom
#define read_bytes(_n) \
switch (_n) { \
case 1: \
- if (fread (&lector_bytes, sizeof(char), _n, archivo) != _n) \
- goto bail; \
- tmp_1byte = lector_bytes[0]; \
+ tmp_1byte = membuf[0]; \
break; \
case 2: \
- if (fread (&lector_bytes, sizeof(char), _n, archivo) != _n) \
- goto bail; \
- tmp_2bytes = two_bytes_to_int (lector_bytes[1], lector_bytes[0]); \
+ tmp_2bytes = two_bytes_to_int (membuf[1], membuf[0]); \
break; \
default: \
- if (fread (&lector_word, sizeof(char), _n, archivo) != _n) \
- goto bail; \
- tmp_4bytes = four_bytes_to_long(lector_word[3], lector_word[2], lector_word[1], lector_word[0]); \
+ tmp_4bytes = four_bytes_to_long(membuf[3], membuf[2], membuf[1], membuf[0]); \
break; \
- }
+ } \
+ JUMP(membuf, _n);
#define read_string(_property) \
unsigned char *_property##tmp = (unsigned char *)calloc(tmp_1byte + 1, 1); \
- if (fread((char *)_property##tmp, 1, tmp_1byte, archivo) != tmp_1byte) { \
- free(_property##tmp); \
- goto bail; \
- } \
+ _property##tmp = memcpy(_property##tmp, membuf, tmp_1byte);\
_property = (unsigned char *)strcat(to_utf8(_property##tmp), ""); \
- free(_property##tmp);
+ free(_property##tmp);\
+ JUMP(membuf, tmp_1byte);
#endif // DATATRAK_HEADER_H