From e7a213cb5893f9f6567512da417117682a750688 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sat, 28 Apr 2012 01:37:55 +0000 Subject: [PATCH] oops, has_plus should be false by default --- dbdimp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbdimp.c b/dbdimp.c index 5411d89..3e17302 100644 --- a/dbdimp.c +++ b/dbdimp.c @@ -175,7 +175,7 @@ sqlite_is_number(pTHX_ const char *v, int sql_type) int neg; int digit = 0; int precision = 0; - bool has_plus = TRUE; + bool has_plus = FALSE; bool maybe_int = TRUE; char format[10];