intel: check return value for calloc

main
Dave Airlie 2010-02-02 10:57:12 +10:00
parent 53e261c01d
commit 973d8d6bd0
1 changed files with 3 additions and 0 deletions

View File

@ -1727,6 +1727,9 @@ drm_intel_bufmgr_gem_init(int fd, int batch_size)
unsigned long size;
bufmgr_gem = calloc(1, sizeof(*bufmgr_gem));
if (bufmgr_gem == NULL)
return NULL;
bufmgr_gem->fd = fd;
if (pthread_mutex_init(&bufmgr_gem->lock, NULL) != 0) {