mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
Fixed issue with return in a void function found by Björn JACKE <bj@SerNet.DE>
Jeremy.
This commit is contained in:
parent
7f2e59e4c1
commit
62143543ce
@ -709,7 +709,8 @@ void process_blocking_lock_queue(void)
|
||||
struct blocking_lock_record *blr, *next = NULL;
|
||||
|
||||
if (sconn->allow_smb2) {
|
||||
return process_blocking_lock_queue_smb2();
|
||||
process_blocking_lock_queue_smb2();
|
||||
return;
|
||||
}
|
||||
|
||||
tv_curr = timeval_current();
|
||||
|
Loading…
Reference in New Issue
Block a user