[Mesa-dev] [PATCH 1/2] egl/haiku: Correct invalid void* conversion in calloc
Alexander von Gluck IV
kallisti5 at unixzen.com
Sun Nov 12 21:53:57 UTC 2017
---
src/egl/drivers/haiku/egl_haiku.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/egl/drivers/haiku/egl_haiku.cpp b/src/egl/drivers/haiku/egl_haiku.cpp
index 237cebf056..287760661e 100644
--- a/src/egl/drivers/haiku/egl_haiku.cpp
+++ b/src/egl/drivers/haiku/egl_haiku.cpp
@@ -313,7 +313,8 @@ _eglBuiltInDriver(void)
{
CALLED();
- _EGLDriver* driver = calloc(1, sizeof(*driver));
+ _EGLDriver* driver;
+ driver = (_EGLDriver*) calloc(1, sizeof(*driver));
if (!driver) {
_eglError(EGL_BAD_ALLOC, "_eglBuiltInDriverHaiku");
return NULL;
--
2.13.6
More information about the mesa-dev
mailing list