forked from luck/tmp_suning_uos_patched
[AGPGART] drivers/char/agp/sgi-agp.c: check kmalloc() return value
drivers/char/agp/sgi-agp.c: check kmalloc() return value Signed-off-by: Amit Choudhary <amit2030@gmail.com> Signed-off-by: Dave Jones <davej@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org>
This commit is contained in:
parent
7f02d687b4
commit
7b37b064c2
@ -281,10 +281,11 @@ static int __devinit agp_sgi_init(void)
|
|||||||
else
|
else
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
sgi_tioca_agp_bridges =
|
sgi_tioca_agp_bridges = kmalloc(tioca_gart_found *
|
||||||
(struct agp_bridge_data **)kmalloc(tioca_gart_found *
|
sizeof(struct agp_bridge_data *),
|
||||||
sizeof(struct agp_bridge_data *),
|
GFP_KERNEL);
|
||||||
GFP_KERNEL);
|
if (!sgi_tioca_agp_bridges)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
j = 0;
|
j = 0;
|
||||||
list_for_each_entry(info, &tioca_list, ca_list) {
|
list_for_each_entry(info, &tioca_list, ca_list) {
|
||||||
|
Loading…
Reference in New Issue
Block a user