* grub-core/net/drivers/ieee1275/ofnet.c
(grub_ieee1275_net_config_real): Likewise.
+2012-06-21 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/kern/main.c (grub_set_prefix_and_root): Fix memory leak.
+ * grub-core/net/drivers/ieee1275/ofnet.c
+ (grub_ieee1275_net_config_real): Likewise.
+
2012-06-21 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/net/bootp.c (grub_net_configure_by_dhcp_ack): Don't create
grub_free (device);
device = new_device;
}
+ else
+ grub_free (fwdevice);
if (fwpath && !path)
path = fwpath;
+ else
+ grub_free (fwpath);
if (device)
{
char *prefix_set;
+ bootp_response_properties[i].offset),
size - bootp_response_properties[i].offset,
1, device, path);
+ grub_free (bootp_response);
return;
}
}