oleaut32: Removed useless NULL ptr check (Coverity).

This commit is contained in:
Marcus Meissner 2009-01-31 13:15:32 +01:00 committed by Alexandre Julliard
parent 5493b77290
commit 4d8fffb24b
1 changed files with 15 additions and 15 deletions

View File

@ -3952,23 +3952,23 @@ static ITypeLib2* ITypeLib2_Constructor_SLTG(LPVOID pLib, DWORD dwTLBLength)
} }
if(pTITail) { /* could get cFuncs, cVars and cImplTypes from here /* could get cFuncs, cVars and cImplTypes from here
but we've already set those */ but we've already set those */
#define X(x) TRACE_(typelib)("tt "#x": %x\n",pTITail->res##x); #define X(x) TRACE_(typelib)("tt "#x": %x\n",pTITail->res##x);
X(06); X(06);
X(16); X(16);
X(18); X(18);
X(1a); X(1a);
X(1e); X(1e);
X(24); X(24);
X(26); X(26);
X(2a); X(2a);
X(2c); X(2c);
X(2e); X(2e);
X(30); X(30);
X(32); X(32);
X(34); X(34);
} #undef X
ppTypeInfoImpl = &((*ppTypeInfoImpl)->next); ppTypeInfoImpl = &((*ppTypeInfoImpl)->next);
pBlk = (char*)pBlk + pBlkEntry[order].len; pBlk = (char*)pBlk + pBlkEntry[order].len;
} }