Fix launch GUI error for IsSecretPersistent
This commit is contained in:
parent
4dae137bc4
commit
878c526930
@ -1244,31 +1244,33 @@ namespace Novell.CASA
|
||||
public static bool IsSecretPersistent(uint ssFlags, string id)
|
||||
{
|
||||
int rcode = 0;
|
||||
if (null != id && "" !=id)
|
||||
|
||||
SSCS_SECRET_ID_T secretID = new SSCS_SECRET_ID_T();
|
||||
try
|
||||
{
|
||||
SSCS_SECRET_ID_T secretID = new SSCS_SECRET_ID_T();
|
||||
try
|
||||
if(ssFlags == 0)
|
||||
{
|
||||
if(ssFlags == 0)
|
||||
{
|
||||
secretID.len = id.Length;
|
||||
secretID.id = id;
|
||||
rcode = miCASAIsSecretPersistent(ssFlags,
|
||||
secretID,
|
||||
new SSCS_EXT_T());
|
||||
}
|
||||
else
|
||||
{
|
||||
rcode = miCASAIsSecretPersistent(ssFlags,
|
||||
null,
|
||||
new SSCS_EXT_T());
|
||||
}
|
||||
if ((null == id) || ("" == id))
|
||||
return false;
|
||||
|
||||
secretID.len = id.Length;
|
||||
secretID.id = id;
|
||||
rcode = miCASAIsSecretPersistent(ssFlags,
|
||||
secretID,
|
||||
new SSCS_EXT_T());
|
||||
}
|
||||
catch (Exception e)
|
||||
else
|
||||
{
|
||||
Console.WriteLine(e.ToString());
|
||||
rcode = miCASAIsSecretPersistent(ssFlags,
|
||||
null,
|
||||
new SSCS_EXT_T());
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine(e.ToString());
|
||||
}
|
||||
|
||||
|
||||
if(rcode == 1)
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user