From 47c4ad5807fb1f982035c4dcdd9a400289afa143 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Tue, 29 Oct 2013 20:58:26 -0400 Subject: [PATCH] Make sure the var is initilized to nil. --- UI/Common/UIxParentFolderActions.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/UI/Common/UIxParentFolderActions.m b/UI/Common/UIxParentFolderActions.m index 98cc81480..3021687d2 100644 --- a/UI/Common/UIxParentFolderActions.m +++ b/UI/Common/UIxParentFolderActions.m @@ -40,6 +40,8 @@ NSString *name, *nameInContainer; name = [[context request] formValueForKey: @"name"]; + nameInContainer = nil; + if ([name length] > 0) { if (![[self clientObject] hasLocalSubFolderNamed: name])