]> granicus.if.org Git - postgresql/commitdiff
Made function better readable.
authorMichael Meskes <meskes@postgresql.org>
Tue, 24 Nov 2009 16:30:31 +0000 (16:30 +0000)
committerMichael Meskes <meskes@postgresql.org>
Tue, 24 Nov 2009 16:30:31 +0000 (16:30 +0000)
src/interfaces/ecpg/ecpglib/misc.c

index fafe9aceba8bee51b789b65621624c5715b656be..c779cc1a7b975f81bdf157187b6ef599c44eac2d 100644 (file)
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/misc.c,v 1.52 2009/09/18 13:13:32 meskes Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/misc.c,v 1.53 2009/11/24 16:30:31 meskes Exp $ */
 
 #define POSTGRES_ECPG_INTERNAL
 #include "postgres_fe.h"
@@ -364,10 +364,11 @@ ECPGset_noind_null(enum ECPGttype type, void *ptr)
 static bool
 _check(unsigned char *ptr, int length)
 {
-       for (; length > 0 && ptr[--length] == 0xff;);
-       if (length <= 0)
-               return true;
-       return false;
+       for (length--; length >= 0; length--)
+               if (ptr[length] != 0xff)
+                       return false;
+
+       return true;
 }
 
 bool