dispatch: assert, not errx, when we have no context

errx() calls exit(), you'd rather get a backtrace.

Signed-off-by: Adam Jackson <ajax@redhat.com>
macos/v1.5.9
Adam Jackson 7 years ago
parent 74dbb7bac9
commit f7486f7753
  1. 2
      src/dispatch_common.c

@ -859,7 +859,7 @@ epoxy_get_proc_address(const char *name)
#elif PLATFORM_HAS_GLX #elif PLATFORM_HAS_GLX
if (epoxy_current_context_is_glx()) if (epoxy_current_context_is_glx())
return glXGetProcAddressARB((const GLubyte *)name); return glXGetProcAddressARB((const GLubyte *)name);
errx(1, "Couldn't find current GLX or EGL context.\n"); assert(0 && "Couldn't find current GLX or EGL context.\n");
#endif #endif
return NULL; return NULL;

Loading…
Cancel
Save