You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
975 B
36 lines
975 B
From fdc3bfebfc9a2d7c2b9fb09ae2f873b1ee741d21 Mon Sep 17 00:00:00 2001 |
|
From: Hans de Goede <hdegoede@redhat.com> |
|
Date: Mon, 30 Jun 2014 14:16:46 -0400 |
|
Subject: [PATCH 126/237] Don't munge raw spaces when we're doing our cmdline |
|
escaping (#923374) |
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com> |
|
--- |
|
grub-core/lib/cmdline.c | 11 +---------- |
|
1 file changed, 1 insertion(+), 10 deletions(-) |
|
|
|
diff --git a/grub-core/lib/cmdline.c b/grub-core/lib/cmdline.c |
|
index 0a5b2af..970ea86 100644 |
|
--- a/grub-core/lib/cmdline.c |
|
+++ b/grub-core/lib/cmdline.c |
|
@@ -97,16 +97,7 @@ int grub_create_loader_cmdline (int argc, char *argv[], char *buf, |
|
|
|
while (*c) |
|
{ |
|
- if (*c == ' ') |
|
- { |
|
- *buf++ = '\\'; |
|
- *buf++ = 'x'; |
|
- *buf++ = '2'; |
|
- *buf++ = '0'; |
|
- c++; |
|
- continue; |
|
- } |
|
- else if (*c == '\\' && *(c+1) == 'x' && |
|
+ if (*c == '\\' && *(c+1) == 'x' && |
|
is_hex(*(c+2)) && is_hex(*(c+3))) |
|
{ |
|
*buf++ = *c++; |
|
-- |
|
2.9.3 |
|
|
|
|