summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-06-29 17:55:58 -0700
committerJoshua Haberman <joshua@reverberate.org>2009-06-29 17:55:58 -0700
commit9fcddef19f774c93adad136e9da25ed3b07ce76a (patch)
treeceef722edc14042d98cd2752619bd528cd7b8350
parent2d21601d477dfc242d31acabdad119a56d2b7945 (diff)
Updated comment to reflect code change.
-rw-r--r--upb_parse.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/upb_parse.c b/upb_parse.c
index f45ff1f..46d6d86 100644
--- a/upb_parse.c
+++ b/upb_parse.c
@@ -26,9 +26,7 @@
if(status != UPB_STATUS_OK) return status; \
} while (0)
-/* Lowest-level functions -- these read integers from the input buffer.
- * To avoid branches, none of these do bounds checking. So we force clients
- * to overallocate their buffers by >=9 bytes. */
+/* Lowest-level functions -- these read integers from the input buffer. */
static size_t min(size_t a, size_t b) { return a < b ? a : b; }
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback