diff options
author | Emil Velikov <[email protected]> | 2014-02-10 20:08:31 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-02-22 03:26:28 +0000 |
commit | b4e8572bca60928c297e2b913ea1059aef104b98 (patch) | |
tree | 3d8b41cd28bacc01d0648a020146e49e6a791ca3 /src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c | |
parent | 1fb750f7f7331f369acf1827c79dc5e8d4e5ec42 (diff) |
pipe-loader: handle memory allocation failure
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Jakob Bornecrantz <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c index 9b8f1b55e8f..b8acbb91e53 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c @@ -123,6 +123,9 @@ pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd, struct pipe_loader_drm_device *ddev = CALLOC_STRUCT(pipe_loader_drm_device); int vendor_id, chip_id; + if (!ddev) + return FALSE; + if (loader_get_pci_id_for_fd(fd, &vendor_id, &chip_id)) { ddev->base.type = PIPE_LOADER_DEVICE_PCI; ddev->base.u.pci.vendor_id = vendor_id; |