]> andersk Git - moira.git/commitdiff
Arguments to kname_parse need to be initialized.
authorzacheiss <zacheiss>
Fri, 20 Apr 2007 13:57:14 +0000 (13:57 +0000)
committerzacheiss <zacheiss>
Fri, 20 Apr 2007 13:57:14 +0000 (13:57 +0000)
server/mr_sauth.c

index 8e83101b8f1b1b46f5a9326eb9deffea0d41c1d3..100297c027e60d59dee858426be68d085f8af461 100644 (file)
@@ -127,7 +127,7 @@ void do_auth(client *cl)
 
 void do_proxy(client *cl)
 {
-  char name[ANAME_SZ], inst[INST_SZ], realm[REALM_SZ];
+  char name[ANAME_SZ] = "\0", inst[INST_SZ] = "\0", realm[REALM_SZ] = "\0";
   char kname[MAX_K_NAME_SZ];
 
   if (cl->proxy_id)
This page took 0.369148 seconds and 5 git commands to generate.