[Mesa-dev] [PATCH] clover: Handle NULL pipe_loader_device returned by pipe_loader_probe()

2015-11-30 Thread Tom Stellard
pipe_loader_probe() may initalize an entry in the device list to NULL, while still counting this device in the number of devices that it returns, so we need to handle this situation. --- This is the most simple fix possible to get clover working again. We can discuss fixing the other issues in cl

Re: [Mesa-dev] [PATCH] clover: Handle NULL pipe_loader_device returned by pipe_loader_probe()

2015-11-30 Thread Francisco Jerez
Tom Stellard writes: > pipe_loader_probe() may initalize an entry in the device list to NULL, > while still counting this device in the number of devices that it > returns, so we need to handle this situation. If this is related to the patch you sent last Saturday (1448679128-20276-1-git-send-em

Re: [Mesa-dev] [PATCH] clover: Handle NULL pipe_loader_device returned by pipe_loader_probe()

2015-11-30 Thread Tom Stellard
On Mon, Nov 30, 2015 at 07:57:32PM +0200, Francisco Jerez wrote: > Tom Stellard writes: > > > pipe_loader_probe() may initalize an entry in the device list to NULL, > > while still counting this device in the number of devices that it > > returns, so we need to handle this situation. > > If this