Browse Source

efi_loader: Fix warning in raw/cols query

The code to determine rows / cols on the screen could potentially run
into a case where it doesn't know how big the screen is. In that case,
assume 80x25.

Signed-off-by: Alexander Graf <agraf@suse.de>
Alexander Graf 7 years ago
parent
commit
80483b2ab6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/efi_loader/efi_console.c

+ 1 - 1
lib/efi_loader/efi_console.c

@@ -223,7 +223,7 @@ static int query_console_serial(int *rows, int *cols)
 static void query_console_size(void)
 {
 	const char *stdout_name = env_get("stdout");
-	int rows, cols;
+	int rows = 25, cols = 80;
 
 	if (stdout_name && !strcmp(stdout_name, "vidconsole") &&
 	    IS_ENABLED(CONFIG_DM_VIDEO)) {