From 49c776ea59c9af4ad5e2d1af3b93712ee6534abe Mon Sep 17 00:00:00 2001 From: Ray Lai Date: Tue, 2 Jun 2009 11:17:03 +0000 Subject: [PATCH] Make code clearer: - if (hdr->size > SIZE_MAX - 1) + if (hdr->size == SIZE_MAX) OK nicm@ --- client-msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-msg.c b/client-msg.c index fd48d403..2e2a6b49 100644 --- a/client-msg.c +++ b/client-msg.c @@ -73,7 +73,7 @@ client_msg_dispatch(struct client_ctx *cctx, char **error) int client_msg_fn_error(struct hdr *hdr, struct client_ctx *cctx, char **error) { - if (hdr->size > SIZE_MAX - 1) + if (hdr->size == SIZE_MAX) fatalx("bad MSG_ERROR size"); *error = xmalloc(hdr->size + 1);