From 9fcddef19f774c93adad136e9da25ed3b07ce76a Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Mon, 29 Jun 2009 17:55:58 -0700 Subject: Updated comment to reflect code change. --- upb_parse.c | 4 +--- 1 file changed, 1 insertion(+), 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; } -- cgit v1.2.3