Browse Source

Fix impossible len >= UNIX_PATH_MAX warning

master
Con Kolivas 10 years ago
parent
commit
cc0d188573
  1. 2
      src/libckpool.c

2
src/libckpool.c

@ -726,7 +726,7 @@ int _open_unix_server(const char *server_path, const char *file, const char *fun
if (likely(server_path)) {
len = strlen(server_path);
if (unlikely(len < 1 || len > UNIX_PATH_MAX)) {
if (unlikely(len < 1 || len >= UNIX_PATH_MAX)) {
LOGERR("Invalid server path length %d in open_unix_server", len);
goto out;
}

Loading…
Cancel
Save