[Refdb-cvs] CVS: refdb/src xmlhandler.c,1.22.2.23,1.22.2.24
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2006-02-08 20:47:02
|
Update of /cvsroot/refdb/refdb/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6534 Modified Files: Tag: Release_0_9_5_stable xmlhandler.c Log Message: initialize a couple of values Index: xmlhandler.c =================================================================== RCS file: /cvsroot/refdb/refdb/src/xmlhandler.c,v retrieving revision 1.22.2.23 retrieving revision 1.22.2.24 diff -u -U2 -r1.22.2.23 -r1.22.2.24 --- xmlhandler.c 26 Dec 2005 22:10:36 -0000 1.22.2.23 +++ xmlhandler.c 8 Feb 2006 20:46:54 -0000 1.22.2.24 @@ -1340,8 +1340,8 @@ int errcode; /* receives error code for periodical requests */ char buffer[32]; - char* database; + char* database = ""; char* id_string; char* multi_id_string; - char* multi_database; + char* multi_database = ""; char* sql_command; char* new_sql_command; @@ -1360,6 +1360,6 @@ int use_qtitle = 0; int use_ztitle = 0; - unsigned long long temp_id; - unsigned long long real_orig_id; + unsigned long long temp_id = 0; + unsigned long long real_orig_id = 0; dbi_conn conn_source = NULL; dbi_result dbires; |