summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2010-07-17 15:05:57 -0700
committerJoshua Haberman <joshua@reverberate.org>2010-07-17 15:05:57 -0700
commitaf9d691a344746b15fb1df2e454273b637d20433 (patch)
tree1b53f777c7614484fb69e40f14767f64a4793b79 /core
parent79de3ca9e48877dfc506c9a486e1e5599c2312f9 (diff)
Added Xcode project.
Diffstat (limited to 'core')
-rw-r--r--core/upb_string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/upb_string.c b/core/upb_string.c
index ca3c669..93686f5 100644
--- a/core/upb_string.c
+++ b/core/upb_string.c
@@ -71,7 +71,7 @@ upb_string *upb_string_tryrecycle(upb_string *str) {
}
char *upb_string_getrwbuf(upb_string *str, upb_strlen_t len) {
- assert(str->ptr == NULL);
+ // assert(str->ptr == NULL);
uint32_t size = upb_string_size(str);
if (size < len) {
size = upb_round_up_pow2(len);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback