Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Uninstall issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nasiva committed May 2, 2016
1 parent c6f8ce9 commit cd61396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMP/Setup/SetupCMP/InstallItemCustomDelegates.cs
Expand Up @@ -659,7 +659,7 @@ public static string GetSQLServerInstanceNameStr(bool isWap)
string sqlServerInstanceName = String.Empty;
String sqlMachineName = String.Empty;
String instanceName = (String)SetupInputs.Instance.FindItem(SetupInputTags.GetSqlInstanceNameTag(isWap));
if (sqlMachine == null)
if (String.IsNullOrEmpty(sqlMachine))
sqlMachineName = (String)SetupInputs.Instance.FindItem(SetupInputTags.GetSqlMachineNameTag(isWap));
else
sqlMachineName = sqlMachine;
Expand Down

0 comments on commit cd61396

Please sign in to comment.