mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Fix some more bugs
This commit is contained in:
		
							parent
							
								
									bac65078a2
								
							
						
					
					
						commit
						ac3be29517
					
				
					 1 changed files with 4 additions and 3 deletions
				
			
		| 
						 | 
					@ -113,8 +113,9 @@ bool i3bar_handle_readable(struct status_line *status) {
 | 
				
			||||||
	char *cur = &state->buffer[state->buffer_index];
 | 
						char *cur = &state->buffer[state->buffer_index];
 | 
				
			||||||
	ssize_t n = read(status->read_fd, cur,
 | 
						ssize_t n = read(status->read_fd, cur,
 | 
				
			||||||
			state->buffer_size - state->buffer_index);
 | 
								state->buffer_size - state->buffer_index);
 | 
				
			||||||
	if (n == 0) {
 | 
						if (n == -1) {
 | 
				
			||||||
		return 0;
 | 
							status_error(status, "[failed to read from status command]");
 | 
				
			||||||
 | 
							return false;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (n == (ssize_t)(state->buffer_size - state->buffer_index)) {
 | 
						if (n == (ssize_t)(state->buffer_size - state->buffer_index)) {
 | 
				
			||||||
| 
						 | 
					@ -123,7 +124,7 @@ bool i3bar_handle_readable(struct status_line *status) {
 | 
				
			||||||
		if (!new_buffer) {
 | 
							if (!new_buffer) {
 | 
				
			||||||
			free(state->buffer);
 | 
								free(state->buffer);
 | 
				
			||||||
			status_error(status, "[failed to allocate buffer]");
 | 
								status_error(status, "[failed to allocate buffer]");
 | 
				
			||||||
			return -1;
 | 
								return true;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		state->current_node += new_buffer - state->buffer;
 | 
							state->current_node += new_buffer - state->buffer;
 | 
				
			||||||
		cur += new_buffer - state->buffer;
 | 
							cur += new_buffer - state->buffer;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue