diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-05-14 18:47:24 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-05-14 18:47:24 -0700 |
commit | ca8a9af2c282da78eac601e316d7db553cb411b3 (patch) | |
tree | ecfe38c8896dd42e13577ad847de96e2f0c03b92 /process.c | |
parent | 59ccc789fa5d7d34cd81d28f46b6022e92536d6b (diff) | |
download | iceauth-ca8a9af2c282da78eac601e316d7db553cb411b3.tar.gz |
Coverity #1039: Using uninitialized value "authdata"
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |