0

什麼不對這個代碼:E_OUTOFMEMORY,堆損壞

HRESULT AllocateAndFillOutParameters(DWORD * a_Attrib_Count, BSTR ** a_AttribName, DWORD** a_AttribId,BSTR** a_AttribDescription, BSTR** a_AttribDataType, 
    BSTR** a_AttribAdvanceDataType,DWORD** a_attribfieldlength, VECTOROFATTRIBUTESSTRUCT a_vectAttributes) 
{ 
HRESULT hr = S_OK; 
VECTOROFATTRIBUTESSTRUCT::iterator itr_vectCategory = a_vectAttributes.begin(); 

    // Memory Allocation 
    *a_Attrib_Count = a_vectAttributes.size(); 
    *a_AttribName = (BSTR*)CoTaskMemAlloc(*a_Attrib_Count * sizeof(BSTR)); 
    *a_AttribDescription = (BSTR*)CoTaskMemAlloc(*a_Attrib_Count * sizeof(BSTR)); 
    *a_AttribId = (DWORD*)CoTaskMemAlloc(*a_Attrib_Count * sizeof(DWORD)); 
    *a_AttribDataType = (BSTR*)CoTaskMemAlloc(*a_Attrib_Count * sizeof(BSTR)); 
    *a_AttribAdvanceDataType = (BSTR*)CoTaskMemAlloc(*a_Attrib_Count * sizeof(BSTR)); 
    *a_attribfieldlength = (DWORD*)CoTaskMemAlloc(*a_Attrib_Count * sizeof(DWORD)); 
    // 

    for(int i=0 ;itr_vectCategory != a_vectAttributes.end(); itr_vectCategory++, i++) 
    { 
     *((*a_AttribName)+i) = SysAllocString(itr_vectCategory->m_strAttributeName.c_str()); 
     *((*a_AttribId)+i) = itr_vectCategory->m_dwAttributeId; 
     *((*a_AttribDescription)+i) = SysAllocString(itr_vectCategory->m_strAttributeDescription.c_str()); 
     *((*a_AttribDataType)+i) = SysAllocString(itr_vectCategory->m_strAttributeDataType.c_str()); 
     *((*a_AttribAdvanceDataType)+i) = SysAllocString(itr_vectCategory->m_strAttributeAdvanceDataType.c_str()); 
     *((*a_attribfieldlength)+i) = (itr_vectCategory->m_dwAttributeFieldLength); 

    } 

return hr; 
} 

它給堆損壞的運行時異常,我是在分配錯誤的方式? 感謝您的幫助。

+0

這是生產守則嗎? – 2012-01-11 13:57:01

+1

在循環中,它應該真的是'(* a_AttribName)+ 1'嗎?你不應該加'i'而不是'1'嗎? – 2012-01-11 14:01:09

+0

是的,這是我在這裏輸入錯誤。 – Ehsank 2012-01-11 14:02:48

回答

0

我不能告訴你在哪裏你的錯誤,但我會建議下載Debugging Tools for Windows然後reading the docs上啓用使用gflags程序,它可以讓你在那裏堆損壞實際發生捕獲錯誤頁堆調試。