]> git.sesse.net Git - vlc/blobdiff - activex/persiststorage.h
Removes trailing spaces. Removes tabs.
[vlc] / activex / persiststorage.h
index e2fb78e1575171e6586a5bea771e07285ec2bf26..198077826aa072eb6f3f7ce72017ccd5d8def3a8 100644 (file)
@@ -36,10 +36,12 @@ public:
     // IUnknown methods
     STDMETHODIMP QueryInterface(REFIID riid, void **ppv)
     {
-        if( (NULL != ppv)
-         && (IID_IUnknown == riid) 
-         && (IID_IPersist == riid) 
-         && (IID_IPersistStorage == riid) ) {
+        if( NULL == ppv )
+            return E_POINTER;
+        if( (IID_IUnknown == riid)
+         || (IID_IPersist == riid)
+         || (IID_IPersistStorage == riid) )
+        {
             AddRef();
             *ppv = reinterpret_cast<LPVOID>(this);
             return NOERROR;