CCL: ccl_err_msg returns 0 ptr for invalid ccl_errno
authorAdam Dickmeiss <adam@indexdata.dk>
Fri, 24 Feb 2012 10:26:56 +0000 (11:26 +0100)
committerAdam Dickmeiss <adam@indexdata.dk>
Fri, 24 Feb 2012 10:26:56 +0000 (11:26 +0100)
src/cclerrms.c

index e9b6a87..b0cafc1 100644 (file)
@@ -35,7 +35,11 @@ static char *err_msg_array[] = {
 
 const char *ccl_err_msg(int ccl_errno)
 {
-    return err_msg_array[ccl_errno];
+    if (ccl_errno >= 0 && 
+        ccl_errno < sizeof(err_msg_array)/sizeof(*err_msg_array))
+        return err_msg_array[ccl_errno];
+    else
+        return 0;
 }
 /*
  * Local variables: