Fix commented code
authorteodor <teodor>
Thu, 10 Jul 2008 17:59:15 +0000 (17:59 +0000)
committerteodor <teodor>
Thu, 10 Jul 2008 17:59:15 +0000 (17:59 +0000)
sfxstr.c

index b94f576..0803345 100644 (file)
--- 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) );