aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/chars.c
diff options
context:
space:
mode:
Diffstat (limited to 'chars.c')
-rw-r--r--chars.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/chars.c b/chars.c
index b0fcc165..25854844 100644
--- a/chars.c
+++ b/chars.c
@@ -1,4 +1,4 @@
-/* $Id: chars.c,v 1.22 2010/07/17 09:21:39 kristaps Exp $ */
+/* $Id: chars.c,v 1.23 2010/07/18 12:10:08 kristaps Exp $ */
/*
* Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -195,7 +195,8 @@ find(struct tbl *tab, const char *p, size_t sz, int type)
int hash;
assert(p);
- assert(sz > 0);
+ if (0 == sz)
+ return(NULL);
if (p[0] < PRINT_LO || p[0] > PRINT_HI)
return(NULL);