]> git.sur5r.net Git - ngadmin/commitdiff
Raw: fix bug in isStringPrintable()
authordarkcoven <admin@darkcoven.tk>
Tue, 9 Sep 2014 14:10:39 +0000 (16:10 +0200)
committerdarkcoven <admin@darkcoven.tk>
Tue, 9 Sep 2014 14:11:20 +0000 (16:11 +0200)
raw/src/str.c

index 1ca2c4456b1deb410e4acea09f70cd2191c5544d..5ae1fc8f48c7afae14877fe6edecfd7eb00fbe23 100644 (file)
@@ -106,7 +106,7 @@ bool isStringPrintable (const char *str, unsigned int len)
        const char *p;
        
        for (p = str; len > 0; len--) {
-               if (!isprint(*p))
+               if (!isprint(*p++))
                        return false;
        }