1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

Fixed issue with return in a void function found by Björn JACKE <bj@SerNet.DE>

Jeremy.
This commit is contained in:
Jeremy Allison 2010-05-05 06:09:03 -07:00
parent 7f2e59e4c1
commit 62143543ce

View File

@ -709,7 +709,8 @@ void process_blocking_lock_queue(void)
struct blocking_lock_record *blr, *next = NULL; struct blocking_lock_record *blr, *next = NULL;
if (sconn->allow_smb2) { if (sconn->allow_smb2) {
return process_blocking_lock_queue_smb2(); process_blocking_lock_queue_smb2();
return;
} }
tv_curr = timeval_current(); tv_curr = timeval_current();