+2011-06-23 David Volgyes <dvolgyes>
+
+ * grub-core/bus/usb/ohci.c (grub_ohci_pci_iter): Avoid NULL-pointer
+ dereference.
+
2011-06-23 Vladimir Serbinenko <phcoder@gmail.com>
Fix spurious warning.
fail:
if (o)
- grub_dma_free (o->td_chunk);
- grub_dma_free (o->ed_bulk_chunk);
- grub_dma_free (o->ed_ctrl_chunk);
- grub_dma_free (o->hcca_chunk);
+ {
+ grub_dma_free (o->td_chunk);
+ grub_dma_free (o->ed_bulk_chunk);
+ grub_dma_free (o->ed_ctrl_chunk);
+ grub_dma_free (o->hcca_chunk);
+ }
grub_free (o);
return 0;