file_doc.c: compilation fix when DEBUG_OLE is defined
This commit is contained in:
parent
53bf782d72
commit
8a2bdd4e44
1 changed files with 4 additions and 2 deletions
|
@ -665,10 +665,12 @@ static void OLE_parse_summary_aux(const unsigned char *dataPt, const unsigned in
|
|||
unsigned int i;
|
||||
if(pos+8 > dirLen)
|
||||
return ;
|
||||
// size=get32u(dataPt, pos);
|
||||
numEntries=get32u(dataPt, pos+4);
|
||||
#ifdef DEBUG_OLE
|
||||
log_info("Property Info %u - %u at 0x%x\n", numEntries, size, pos);
|
||||
{
|
||||
unsigned int size=get32u(dataPt, pos);
|
||||
log_info("Property Info %u - %u at 0x%x\n", numEntries, size, pos);
|
||||
}
|
||||
#endif
|
||||
if(pos + 8 + 8 * numEntries > dirLen)
|
||||
return ;
|
||||
|
|
Loading…
Reference in a new issue