mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Make code clearer:
- if (hdr->size > SIZE_MAX - 1) + if (hdr->size == SIZE_MAX) OK nicm@
This commit is contained in:
		@@ -73,7 +73,7 @@ client_msg_dispatch(struct client_ctx *cctx, char **error)
 | 
				
			|||||||
int
 | 
					int
 | 
				
			||||||
client_msg_fn_error(struct hdr *hdr, struct client_ctx *cctx, char **error)
 | 
					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");
 | 
							fatalx("bad MSG_ERROR size");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	*error = xmalloc(hdr->size + 1);
 | 
						*error = xmalloc(hdr->size + 1);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user