mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 01:34:18 +00:00 
			
		
		
		
	No need to keep global options around for client which doesn't use them.
This commit is contained in:
		
							
								
								
									
										2
									
								
								cfg.c
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								cfg.c
									
									
									
									
									
								
							@@ -98,7 +98,7 @@ load_cfg(const char *path, struct cmd_q *cmdq, char **cause)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	found = 0;
 | 
			
		||||
	while ((buf = fparseln(f, NULL, &line, delim, 0))) {
 | 
			
		||||
	while ((buf = fparseln(f, NULL, &line, delim, 0)) != NULL) {
 | 
			
		||||
		log_debug("%s: %s", path, buf);
 | 
			
		||||
 | 
			
		||||
		/* Skip empty lines. */
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										4
									
								
								client.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								client.c
									
									
									
									
									
								
							@@ -268,6 +268,10 @@ client_main(struct event_base *base, int argc, char **argv, int flags)
 | 
			
		||||
		}
 | 
			
		||||
		return (1);
 | 
			
		||||
	}
 | 
			
		||||
	options_free(&global_options);
 | 
			
		||||
	options_free(&global_s_options);
 | 
			
		||||
	options_free(&global_w_options);
 | 
			
		||||
	environ_free(&global_environ);
 | 
			
		||||
 | 
			
		||||
	/* Create imsg. */
 | 
			
		||||
	imsg_init(&client_ibuf, fd);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user