NOT PART OF BUILD. Return error code when requested property is not available

This commit is contained in:
locka%iol.ie 2002-09-27 18:45:08 +00:00
parent 4d370f9bea
commit 0aa2ee9a93

View File

@ -78,7 +78,8 @@ HRESULT STDMETHODCALLTYPE CPropertyBag::Read(/* [in] */ LPCOLESTR pszPropName, /
return S_OK;
}
}
return S_OK;
// Property does not exist in the bag
return E_INVALIDARG;
}