mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-12 13:01:09 +03:00
Fix an uninitialized variable in OSX proxy locking.
FossilOrigin-Name: 96d6eaf4d2be453191b36875811d9556ad0763ed
This commit is contained in:
@@ -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 */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user