summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2007-05-14 18:47:24 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2007-05-14 18:47:24 -0700
commitca8a9af2c282da78eac601e316d7db553cb411b3 (patch)
treeecfe38c8896dd42e13577ad847de96e2f0c03b92 /process.c
parent59ccc789fa5d7d34cd81d28f46b6022e92536d6b (diff)
downloadiceauth-ca8a9af2c282da78eac601e316d7db553cb411b3.tar.gz
Coverity #1039: Using uninitialized value "authdata"
Diffstat (limited to 'process.c')
-rw-r--r--process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/process.c b/process.c
index f149941..3a30d70 100644
--- a/process.c
+++ b/process.c
@@ -1295,7 +1295,7 @@ static int do_add (inputfilename, lineno, argc, argv)
char *netid;
char *authname;
char *authdata_hex;
- char *authdata;
+ char *authdata = NULL;
int protodata_len, authdata_len;
IceAuthFileEntry *auth = NULL;
AuthList *list;