LookupAccountSid()中的错误0x8007000e

时间:2012-01-19 11:47:04

标签: c++ windows winapi

我有一个非常老的VS6应用程序在调用LookupAccountSid时生成错误0x8007000E(ERROR_OUTOFMEMORY“没有足够的存储空间来完成此操作。”)。

失败的调用只是试图确定在第二次调用LookupAccountSid时需要使用缓冲区的大小:

std::string GetNameFromSID(PSID pSid)
{
    if (NULL == pSid)
        return "";

    DWORD        _dwName;   //Size of the name in TCHARs
    DWORD        _dwDomain; //Size of the domain in TCHARs
    SID_NAME_USE _use;      //Usage type of the name (user,group etc).
    BOOL         _b;

    //Determine the buffer sizes we require
    SetLastError(0);
    _b = LookupAccountSid( NULL, pSid, NULL, &_dwName, NULL, &_dwDomain, &_use );
    if ( !_b ) {
        DWORD _dw = GetLastError();
        if ( ERROR_NONE_MAPPED == _dw ) {
            //There is no name for this SID
            return "";
        } else if ( ERROR_INSUFFICIENT_BUFFER == _dw ) {
            //This is expected.
        } else if ( S_OK != _dw ) {
            //This is where we see ERROR_OUTOFMEMORY
            return "";
        }
    }
    //Do some other stuff here...
}

我的预期是错误0x8007007A:ERROR_INSUFFICIENT_BUFFER“传递给系统调用的数据区域太小了。”这表明我(不出所料)需要分配更大的缓冲区。

系统根本没有内存不足,所以有人可以提出原因吗?

1 个答案:

答案 0 :(得分:2)

如果您将_dwName_dwDomain正确初始化为0,请查看它是否有效。

堆栈上可能有一些随机垃圾,但根据http://msdn.microsoft.com/en-us/library/windows/desktop/aa379166(v=vs.85).aspx,这些必须实际设置为0才能接收所需的缓冲区大小