mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	common: fix potential buffer overflow
This commit is contained in:
		
							parent
							
								
									f7869d815a
								
							
						
					
					
						commit
						aece36cd22
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -32,7 +32,8 @@ int ipc_open_socket(const char *socket_path) {
 | 
				
			||||||
		sway_abort("Unable to open Unix socket");
 | 
							sway_abort("Unable to open Unix socket");
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	addr.sun_family = AF_UNIX;
 | 
						addr.sun_family = AF_UNIX;
 | 
				
			||||||
	strcpy(addr.sun_path, socket_path);
 | 
						strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path));
 | 
				
			||||||
 | 
						addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
 | 
				
			||||||
	int l = sizeof(addr.sun_family) + strlen(addr.sun_path);
 | 
						int l = sizeof(addr.sun_family) + strlen(addr.sun_path);
 | 
				
			||||||
	if (connect(socketfd, (struct sockaddr *)&addr, l) == -1) {
 | 
						if (connect(socketfd, (struct sockaddr *)&addr, l) == -1) {
 | 
				
			||||||
		sway_abort("Unable to connect to %s", socket_path);
 | 
							sway_abort("Unable to connect to %s", socket_path);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue