Fixed bug am42307 (nvault_open did not return -1 on failure)

This commit is contained in:
David Anderson
2006-08-18 22:46:07 +00:00
parent a8b4ebbe70
commit 042b9f7f4b
5 changed files with 56 additions and 5 deletions

View File

@ -20,6 +20,9 @@ public:
class IVaultMngr
{
public:
/**
* Note: Will return NULL if the vault failed to create.
*/
virtual IVault *OpenVault(const char *name) =0;
};