2005-11-18 Yoshinori K. Okuji <okuji@enbug.org>
* conf/powerpc-ieee1275.rmk (grub_script.tab.h): Unified to ... (grub_script.tab.c): ... here. * conf/sparc64-ieee1275.rmk (grub_script.tab.h): Unified to ... (grub_script.tab.c): ... here. * conf/i386-pc.rmk (grub_script.tab.h): Unified to ... (grub_script.tab.c): ... here. * normal/command.c (grub_command_find): Fixed a memory leak of MODULE_NAME. Reported by Mike Small <smallm@panix.com>.
This commit is contained in:
parent
63ba155474
commit
16f820c8c5
7 changed files with 20 additions and 15 deletions
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,17 @@
|
|||
2005-11-18 Yoshinori K. Okuji <okuji@enbug.org>
|
||||
|
||||
* conf/powerpc-ieee1275.rmk (grub_script.tab.h): Unified to ...
|
||||
(grub_script.tab.c): ... here.
|
||||
|
||||
* conf/sparc64-ieee1275.rmk (grub_script.tab.h): Unified to ...
|
||||
(grub_script.tab.c): ... here.
|
||||
|
||||
* conf/i386-pc.rmk (grub_script.tab.h): Unified to ...
|
||||
(grub_script.tab.c): ... here.
|
||||
|
||||
* normal/command.c (grub_command_find): Fixed a memory leak of
|
||||
MODULE_NAME. Reported by Mike Small <smallm@panix.com>.
|
||||
|
||||
2005-11-13 Timothy Baldwin <T.E.Baldwin99@members.leeds.ac.uk>
|
||||
|
||||
* include/grub/symbol.h: (FUNCTION): Use double quotes instead of
|
||||
|
|
|
@ -275,9 +275,7 @@ symlist.c: $(addprefix include/grub/,$(kernel_img_HEADERS)) gensymlist.sh
|
|||
sh $(srcdir)/gensymlist.sh $(filter %.h,$^) > $@
|
||||
|
||||
# For the parser.
|
||||
grub_script.tab.c: normal/parser.y
|
||||
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
|
||||
grub_script.tab.h: normal/parser.y
|
||||
grub_script.tab.c grub_script.tab.h: normal/parser.y
|
||||
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
|
||||
|
||||
|
||||
|
|
|
@ -47,9 +47,7 @@ symlist.c: $(addprefix include/grub/,$(kernel_img_HEADERS)) gensymlist.sh
|
|||
sh $(srcdir)/gensymlist.sh $(filter %.h,$^) > $@
|
||||
|
||||
# For the parser.
|
||||
grub_script.tab.c: normal/parser.y
|
||||
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
|
||||
grub_script.tab.h: normal/parser.y
|
||||
grub_script.tab.c grub_script.tab.h: normal/parser.y
|
||||
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
|
||||
|
||||
|
||||
|
|
|
@ -22,9 +22,7 @@ kernel_syms.lst: $(addprefix include/grub/,$(grubof_HEADERS)) genkernsyms.sh
|
|||
sh $(srcdir)/genkernsyms.sh $(filter %h,$^) > $@
|
||||
|
||||
# For the parser.
|
||||
grub_script.tab.c: normal/parser.y
|
||||
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
|
||||
grub_script.tab.h: normal/parser.y
|
||||
grub_script.tab.c grub_script.tab.h: normal/parser.y
|
||||
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
|
||||
|
||||
# Programs
|
||||
|
|
|
@ -22,9 +22,7 @@ kernel_syms.lst: $(addprefix include/grub/,$(grubof_HEADERS)) genkernsyms.sh
|
|||
sh $(srcdir)/genkernsyms.sh $(filter %h,$^) > $@
|
||||
|
||||
# For the parser.
|
||||
grub_script.tab.c: normal/parser.y
|
||||
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
|
||||
grub_script.tab.h: normal/parser.y
|
||||
grub_script.tab.c grub_script.tab.h: normal/parser.y
|
||||
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
|
||||
|
||||
# Programs
|
||||
|
|
|
@ -20,9 +20,7 @@ grubof_symlist.c: $(addprefix include/grub/,$(grubof_HEADERS)) gensymlist.sh
|
|||
sh $(srcdir)/gensymlist.sh $(filter %.h,$^) > $@
|
||||
|
||||
# For the parser.
|
||||
grub_script.tab.c: normal/parser.y
|
||||
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
|
||||
grub_script.tab.h: normal/parser.y
|
||||
grub_script.tab.c grub_script.tab.h: normal/parser.y
|
||||
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
|
||||
|
||||
kernel_syms.lst: $(addprefix include/grub/,$(grubof_HEADERS)) genkernsyms.sh
|
||||
|
|
|
@ -152,6 +152,7 @@ grub_command_find (char *cmdline)
|
|||
{
|
||||
grub_dl_ref (mod);
|
||||
count++;
|
||||
grub_free (module_name);
|
||||
goto again;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue