mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 20:50:09 +01:00
gbm: return appropriate error when queryImage() fails
Change gbm_dri_bo_get_fd to check the return value of queryImage and
return -1 (an invalid file descriptor) if an error occurs.
Update the comment for gbm_bo_get_fd to return -1, since (apart from the
above) we've already return -1 on error.
Cc: mesa-stable@lists.freedesktop.org
Signed-off-by: Nicholas Bishop <nbishop@neverware.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com> (v1)
[Emil Velikov: Split from larger patch, polish coding style, cc stable]
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
(cherry picked from commit 2d05ba2ca0)
This commit is contained in:
parent
48f001b836
commit
29320aa06a
2 changed files with 4 additions and 2 deletions
|
|
@ -589,7 +589,8 @@ gbm_dri_bo_get_fd(struct gbm_bo *_bo)
|
|||
if (bo->image == NULL)
|
||||
return -1;
|
||||
|
||||
dri->image->queryImage(bo->image, __DRI_IMAGE_ATTRIB_FD, &fd);
|
||||
if (!dri->image->queryImage(bo->image, __DRI_IMAGE_ATTRIB_FD, &fd))
|
||||
return -1;
|
||||
|
||||
return fd;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -242,7 +242,8 @@ gbm_bo_get_handle(struct gbm_bo *bo)
|
|||
* descriptor.
|
||||
|
||||
* \param bo The buffer object
|
||||
* \return Returns a file descriptor referring to the underlying buffer
|
||||
* \return Returns a file descriptor referring to the underlying buffer or -1
|
||||
* if an error occurs.
|
||||
*/
|
||||
GBM_EXPORT int
|
||||
gbm_bo_get_fd(struct gbm_bo *bo)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue