From: Jeffrey Altman Date: Mon, 9 Oct 2006 02:50:25 +0000 (+0000) Subject: STABLE14-windows-scache-ref-leak-fix-20061008 X-Git-Tag: openafs-stable-1_4_2~20 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=da47ad1082ddb24215151db21dfc91029f134d17;p=packages%2Fo%2Fopenafs.git STABLE14-windows-scache-ref-leak-fix-20061008 pointer not pointer to pointer (cherry picked from commit 1e9533907d4877f6b6aa70eb749e7a3e1717d861) --- diff --git a/src/WINNT/afsd/afsd_init.c b/src/WINNT/afsd/afsd_init.c index c5a3471ef..eafca6407 100644 --- a/src/WINNT/afsd/afsd_init.c +++ b/src/WINNT/afsd/afsd_init.c @@ -1189,7 +1189,7 @@ int afsd_InitCM(char **reasonP) int afsd_ShutdownCM(void) { - cm_ReleaseSCache(&cm_data.rootSCachep); + cm_ReleaseSCache(cm_data.rootSCachep); return 0; }