mirror of
https://github.com/ceph/ceph
synced 2025-03-11 02:39:05 +00:00
Locker: use a null_ref instead of NULL
Signed-off-by: Greg Farnum <greg@inktank.com>
This commit is contained in:
parent
099d1d6f46
commit
920fd6cac1
@ -2539,7 +2539,8 @@ public:
|
||||
locker(l), client(c), item(it) { }
|
||||
void finish(int r) {
|
||||
string dname;
|
||||
locker->process_request_cap_release(NULL, client, item, dname);
|
||||
MDRequestRef null_ref;
|
||||
locker->process_request_cap_release(null_ref, client, item, dname);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user