]> git.sur5r.net Git - i3/i3/commitdiff
remove useless checks, size_t != ssize_t :)
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 28 Apr 2011 18:24:16 +0000 (20:24 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 28 Apr 2011 18:24:16 +0000 (20:24 +0200)
src/ipc.c
src/load_layout.c

index 27f89677dee81c59aa8a3670c9c5302d823254e5..e63718cb2eadf186f4899cd2fed9d28c545c6e9f 100644 (file)
--- a/src/ipc.c
+++ b/src/ipc.c
@@ -443,10 +443,6 @@ static int add_subscription(void *extra, const unsigned char *s,
 #else
 static int add_subscription(void *extra, const unsigned char *s,
                             size_t len) {
-    if (len < 0) {
-        DLOG("Invalid subscription with len %zd\n", len);
-        return 1;
-    }
 #endif
     ipc_client *client = extra;
 
index c104ad2ee4dc69ffe594df9223b7fe59127df6f9..f946c6660412740a56fc0a7e9b60fed1c2669fa6 100644 (file)
@@ -71,10 +71,6 @@ static int json_end_array(void *ctx) {
 static int json_key(void *ctx, const unsigned char *val, unsigned int len) {
 #else
 static int json_key(void *ctx, const unsigned char *val, size_t len) {
-    if (len < 0) {
-        LOG("Invalid key, len = %zd\n", len);
-        return 1;
-    }
 #endif
     LOG("key: %.*s\n", (int)len, val);
     FREE(last_key);
@@ -97,10 +93,6 @@ static int json_string(void *ctx, const unsigned char *val, size_t len) {
 #else
 static int json_string(void *ctx, const unsigned char *val, unsigned int len) {
 #endif
-    if (len < 0) {
-        LOG("Invalid string for key %s\n", last_key);
-        return 1;
-    }
     LOG("string: %.*s for key %s\n", len, val, last_key);
     if (parsing_swallows) {
         /* TODO: the other swallowing keys */