fixed run_command behaviour for emtpy command output (uninitialized)
This commit is contained in:
		
							parent
							
								
									3bfa5fe60d
								
							
						
					
					
						commit
						98f3985d3e
					
				| @ -397,7 +397,7 @@ run_command(const char* command) | ||||
| { | ||||
| 	int good; | ||||
| 	FILE *fp = popen(command, "r"); | ||||
| 	char buffer[64]; | ||||
| 	char buffer[64] = ""; | ||||
| 
 | ||||
| 	if (fp == NULL) { | ||||
| 		warn("Could not get command output for: %s", command); | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user