From 485b96466257a972042b49f45cb79bc0d1093748 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Thu, 2 Jul 2009 23:27:31 -0700 Subject: Bugfixes. --- upb_parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'upb_parse.c') diff --git a/upb_parse.c b/upb_parse.c index 8b86418..f44a847 100644 --- a/upb_parse.c +++ b/upb_parse.c @@ -100,8 +100,8 @@ static upb_status_t get_f_uint64_t(void *restrict *buf, void *end, *buf = uint64_end; #else uint32_t lo32, hi32; - get_f_uint32_t(buf, &lo32); - get_f_uint32_t(buf, &hi32); + get_f_uint32_t(buf, &lo32, end); + get_f_uint32_t(buf, &hi32, end); *val = lo32 | ((uint64_t)hi32 << 32); #endif return UPB_STATUS_OK; -- cgit v1.2.3