From 1c5bb4d69c4737f6c47415d69a72f9f3a70ab8d8 Mon Sep 17 00:00:00 2001 From: drh Date: Mon, 10 May 2010 17:29:28 +0000 Subject: Fix an uninitialized variable in OSX proxy locking. FossilOrigin-Name: 96d6eaf4d2be453191b36875811d9556ad0763ed --- src/os_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os_unix.c') diff --git a/src/os_unix.c b/src/os_unix.c index b7659dd34..8c10d1ed3 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -6127,7 +6127,7 @@ static int proxyTakeConch(unixFile *pFile){ ** If pFile holds a lock on a conch file, then release that lock. */ static int proxyReleaseConch(unixFile *pFile){ - int rc; /* Subroutine return code */ + int rc = SQLITE_OK; /* Subroutine return code */ proxyLockingContext *pCtx; /* The locking context for the proxy lock */ unixFile *conchFile; /* Name of the conch file */ -- cgit v1.2.3