X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=activex%2Fviewobject.h;h=7a36de12484a1a2e174b1b9ee57ecdeb20db5abe;hb=97773f131c838673287c0d9d84395ba79cdf830f;hp=501c035591a6e976f357adb481d904bb78fb8385;hpb=35db6dd6ecab2daf4c03ccc2c0be4b25a42c092c;p=vlc diff --git a/activex/viewobject.h b/activex/viewobject.h index 501c035591..7a36de1248 100644 --- a/activex/viewobject.h +++ b/activex/viewobject.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 __VIEWOBJECT_H__ @@ -37,11 +37,12 @@ public: // IUnknown methods STDMETHODIMP QueryInterface(REFIID riid, void **ppv) { - if( (NULL != ppv) - && (IID_IUnknown == riid) - && (IID_IPersist == riid) - && (IID_IViewObject == riid) - && (IID_IViewObject2 == riid) ) { + if( NULL == ppv ) + return E_POINTER; + if( (IID_IUnknown == riid) + || (IID_IViewObject == riid) + || (IID_IViewObject2 == riid) ) + { AddRef(); *ppv = reinterpret_cast(this); return NOERROR;