Changed the SafeSspiHandle et al to invalidate the underlying handle after releasing it.
This commit is contained in:
@@ -58,6 +58,12 @@ namespace NSspi
|
|||||||
{
|
{
|
||||||
get { return IsClosed || this.rawHandle.IsZero(); }
|
get { return IsClosed || this.rawHandle.IsZero(); }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override bool ReleaseHandle()
|
||||||
|
{
|
||||||
|
this.rawHandle.SetInvalid();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class SafeCredentialHandle : SafeSspiHandle
|
public class SafeCredentialHandle : SafeSspiHandle
|
||||||
@@ -72,8 +78,9 @@ namespace NSspi
|
|||||||
ref base.rawHandle
|
ref base.rawHandle
|
||||||
);
|
);
|
||||||
|
|
||||||
|
base.ReleaseHandle();
|
||||||
|
|
||||||
return status == SecurityStatus.OK;
|
return status == SecurityStatus.OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user