From: teodor Date: Thu, 10 Jul 2008 17:59:15 +0000 (+0000) Subject: Fix commented code X-Git-Url: http://www.sigaev.ru/git/gitweb.cgi?p=tedtools.git;a=commitdiff_plain;h=515bf0a51a077b6f807b3be138c5d11e8e69a7e7 Fix commented code --- diff --git a/sfxstr.c b/sfxstr.c index b94f576..0803345 100644 --- a/sfxstr.c +++ b/sfxstr.c @@ -150,10 +150,10 @@ SFSFindData(SFSTree *info, char *word, int len) { while( node && !ISEND(ptr, word, len) ) { if ( node->isskip ) { - /* + if ( len>0 && len - (((char*)ptr) - word) > node->nchar ) return NULL; - else */ if ( STRNCMP(ptr, ((char*)node)+node->dataptr, node->nchar) ) { + else if ( STRNCMP(ptr, ((char*)node)+node->dataptr, node->nchar) ) { ptr+=node->nchar; if ( ISEND(ptr, word, len) && node->isword) { return (void*) ( ((char*)(node->data)) + ((node->haschild) ? sizeof(SFSNode*) : 0) );