*** ./nepenthes-core/src/Utilities.cpp 2006-11-13 20:40:02.000000000 +0100 --- ./nepenthes-core/src/Utilities.cpp 2007-03-14 08:42:51.000000000 +0100 *************** *** 26,31 **** --- 26,32 ---- *******************************************************************************/ /* $Id: Utilities.cpp 550 2006-05-04 10:25:35Z common $ */ + /* Ignoring 172 bytes hexdumps - patch by grospolina.org */ #ifdef WIN32 #include *************** *** 365,370 **** --- 366,378 ---- g_Nepenthes->getLogMgr()->log(mask,"Ignoring zero-length hexdump.\n"); return; } + // adding ignore for 172 byte hexdumps + if ( len == 172 ) + { + g_Nepenthes->getLogMgr()->log(mask,"Ignoring 172 bytes hexdump.\n"); + return; + } + // add ends here if( (f = fopen(md5.c_str(), "wb")) ) {