X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=activex%2Fpersistpropbag.h;h=f4e081c65ed61623744103fc66924255db515b4f;hb=70bb5bccb040d4bf7870177f2c83bad8008bc9e1;hp=32268ae1dcb5abeba611935020d165865fc2a604;hpb=fe087a38282e93addb25fa9598393e40ea233b09;p=vlc diff --git a/activex/persistpropbag.h b/activex/persistpropbag.h index 32268ae1dc..f4e081c65e 100644 --- a/activex/persistpropbag.h +++ b/activex/persistpropbag.h @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #ifndef __PERSISTPROPBAG_H__ @@ -36,19 +36,21 @@ public: // IUnknown methods STDMETHODIMP QueryInterface(REFIID riid, void **ppv) { - if( (NULL != ppv) - && (IID_IUnknown == riid) - && (IID_IPersist == riid) - && (IID_IPersistPropertyBag == riid) ) { + if( NULL == ppv ) + return E_POINTER; + if( (IID_IUnknown == riid) + || (IID_IPersist == riid) + || (IID_IPersistPropertyBag == riid) ) + { AddRef(); *ppv = reinterpret_cast(this); return NOERROR; } - return _p_instance->QueryInterface(riid, ppv); + return _p_instance->pUnkOuter->QueryInterface(riid, ppv); }; - STDMETHODIMP_(ULONG) AddRef(void) { return _p_instance->AddRef(); }; - STDMETHODIMP_(ULONG) Release(void) { return _p_instance->Release(); }; + STDMETHODIMP_(ULONG) AddRef(void) { return _p_instance->pUnkOuter->AddRef(); }; + STDMETHODIMP_(ULONG) Release(void) { return _p_instance->pUnkOuter->Release(); }; // IPersist methods STDMETHODIMP GetClassID(LPCLSID);