From 5a83b1fcda6b091c224b1f1681ea7357ac805c92 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 11 Nov 2018 15:29:59 +0100 Subject: Simplify reader stack pushing code --- src/reader.h | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/reader.h b/src/reader.h index 869ac21d..ad07f601 100644 --- a/src/reader.h +++ b/src/reader.h @@ -167,16 +167,18 @@ push_byte(SerdReader* reader, SerdNode* node, const int c) } static inline SerdStatus -push_bytes(SerdReader* reader, SerdNode* ref, const uint8_t* bytes, unsigned len) +push_bytes(SerdReader* reader, + SerdNode* ref, + const uint8_t* bytes, + unsigned len) { - if (reader->stack.buf_size < reader->stack.size + len) { - return SERD_ERR_OVERFLOW; - } - - for (unsigned i = 0; i < len; ++i) { - push_byte(reader, ref, bytes[i]); + const bool has_space = reader->stack.buf_size >= reader->stack.size + len; + if (has_space) { + for (unsigned i = 0; i < len; ++i) { + push_byte(reader, ref, bytes[i]); + } } - return SERD_SUCCESS; + return has_space ? SERD_SUCCESS : SERD_ERR_OVERFLOW; } #endif // SERD_READER_H -- cgit v1.2.1