projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3fdbac9
)
fix compiler warning in res_config_odbc.c
author
Anthony Minessale II
<anthmct@yahoo.com>
Tue, 13 Jul 2004 22:53:17 +0000
(22:53 +0000)
committer
Anthony Minessale II
<anthmct@yahoo.com>
Tue, 13 Jul 2004 22:53:17 +0000
(22:53 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3424
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
res/res_config_odbc.c
patch
|
blob
|
history
diff --git
a/res/res_config_odbc.c
b/res/res_config_odbc.c
index
17f9bd2
..
68779ee
100755
(executable)
--- a/
res/res_config_odbc.c
+++ b/
res/res_config_odbc.c
@@
-42,10
+42,10
@@
static struct ast_config *config_odbc (char *file, struct ast_config *new_config
char connection[128];
int configured = 0, res = 0;
odbc_obj *obj;
- SQLINTEGER err, commented, cat_metric, var_metric, last_cat_metric;
+ SQLINTEGER err=0, commented=0, cat_metric=0, var_metric=0, last_cat_metric=0;
SQLBIGINT id;
char sql[255], filename[128], category[128], var_name[128], var_val[128];
- SQLSMALLINT rowcount;
+ SQLSMALLINT rowcount=0;
SQLHSTMT stmt;
char last[80];
int cat_started = 0;