parenthesis in the middle of the filename.
+2011-04-11 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/kern/file.c (grub_file_open): Don't take into account the
+ parenthesis in the middle of the filename.
+
2011-04-10 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/loader/mips/linux.c (grub_cmd_initrd): Use correct limits
goto fail;
/* Get the file part of NAME. */
- file_name = grub_strchr (name, ')');
+ file_name = (name[0] == '(') ? grub_strchr (name, ')') : NULL;
if (file_name)
file_name++;
else