summaryrefslogtreecommitdiff
path: root/stream/upb_strstream.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/upb_strstream.c')
-rw-r--r--stream/upb_strstream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/upb_strstream.c b/stream/upb_strstream.c
index 8a230ae..a7967d4 100644
--- a/stream/upb_strstream.c
+++ b/stream/upb_strstream.c
@@ -13,7 +13,7 @@ static upb_strlen_t upb_stringsrc_read(upb_bytesrc *_src, void *buf,
upb_strlen_t count, upb_status *status) {
upb_stringsrc *src = (upb_stringsrc*)_src;
if (src->offset == upb_string_len(src->str)) {
- upb_seterr(status, UPB_EOF, "");
+ status->code = UPB_EOF;
return -1;
} else {
upb_strlen_t to_read = UPB_MIN(count, upb_string_len(src->str) - src->offset);
@@ -27,7 +27,7 @@ static bool upb_stringsrc_getstr(upb_bytesrc *_src, upb_string *str,
upb_status *status) {
upb_stringsrc *src = (upb_stringsrc*)_src;
if (src->offset == upb_string_len(src->str)) {
- upb_seterr(status, UPB_EOF, "");
+ status->code = UPB_EOF;
return false;
} else {
upb_strlen_t len = upb_string_len(src->str) - src->offset;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback