From 1cf80d57e150ec8829d8a7f749354f6e3e3f027a Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 1 Feb 2010 13:41:21 -0800 Subject: [PATCH] uclient: fix uninitialized var --- src/client/Client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/Client.h b/src/client/Client.h index 2f08345b44285..e00c23fb9da4d 100644 --- a/src/client/Client.h +++ b/src/client/Client.h @@ -139,7 +139,7 @@ struct MetaRequest { old_dentry_drop(0), old_dentry_unless(0), inode(NULL), old_inode(NULL), dentry(NULL), old_dentry(NULL), - resend_mds(-1), num_fwd(0), retry_attempt(0), + mds(-1), resend_mds(-1), num_fwd(0), retry_attempt(0), ref(1), reply(0), kick(false), got_safe(false), got_unsafe(false), item(this), unsafe_item(this), lock("MetaRequest lock"), -- 2.39.5