Locker: use a null_ref instead of NULL

Signed-off-by: Greg Farnum <greg@inktank.com>
This commit is contained in:
Greg Farnum 2014-03-12 14:20:52 -07:00
parent 099d1d6f46
commit 920fd6cac1

View File

@ -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);
}
};