Skip to content

Instantly share code, notes, and snippets.

@joncham
Created February 6, 2015 15:11
Show Gist options
  • Save joncham/dee87d5ce78797cc3df8 to your computer and use it in GitHub Desktop.
Save joncham/dee87d5ce78797cc3df8 to your computer and use it in GitHub Desktop.
Double Check Locking Style
if (!value)
{
AutoLock lock (&theLock);
if (!value)
{
//...
value = ///
}
}
// vs
if (value)
return value;
AutoLock lock (&theLock);
if (value)
return value;
//...
value = ///
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment