From: Jeffrey Altman Date: Tue, 4 Jul 2006 07:18:30 +0000 (+0000) Subject: DEVEL15-viced-uninitialized-20060704 X-Git-Tag: openafs-devel-1_5_3~7 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=e3e011e64c46f3b914d7be72860e23b4541e712f;p=packages%2Fo%2Fopenafs.git DEVEL15-viced-uninitialized-20060704 tcon in XStatsVersion. (cherry picked from commit 15963ecb3459f34025c0e8fdbf8f1055e1e4a294) --- diff --git a/src/viced/afsfileprocs.c b/src/viced/afsfileprocs.c index 7e5184e6f..cc19546b8 100644 --- a/src/viced/afsfileprocs.c +++ b/src/viced/afsfileprocs.c @@ -5527,7 +5527,7 @@ SRXAFS_XStatsVersion(struct rx_call * a_call, afs_int32 * a_versionP) { /*SRXAFS_XStatsVersion */ struct client *t_client = NULL; /* tmp ptr to client data */ - struct rx_connection *tcon; + struct rx_connection *tcon = rx_ConnectionOf(a_call); #if FS_STATS_DETAILED struct fs_stats_opTimingData *opP; /* Ptr to this op's timing struct */ struct timeval opStartTime, opStopTime; /* Start/stop times for RPC op */