+2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/commands/legacycfg.c (legacy_file): Trim the line.
+
2011-01-10 Vladimir Serbinenko <phcoder@gmail.com>
* util/grub-menulst2cfg.c (main): Trim the line.
{
char *oldname = NULL;
char *newsuffix;
+ char *ptr;
+
+ for (ptr = buf; *ptr && grub_isspace (*ptr); ptr++);
oldname = entryname;
- parsed = grub_legacy_parse (buf, &entryname, &newsuffix);
+ parsed = grub_legacy_parse (ptr, &entryname, &newsuffix);
+ grub_free (buf);
buf = NULL;
if (newsuffix)
{