Module: Mesa Branch: master Commit: 6b9924ccb67ad04ef8f3020dd08a5b47d4ec06e2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6b9924ccb67ad04ef8f3020dd08a5b47d4ec06e2
Author: Marek Olšák <[email protected]> Date: Tue Jul 19 21:18:25 2016 +0200 ddebug: don't use abort() We don't want a core dump. Reviewed-by: Nicolai Hähnle <[email protected]> --- src/gallium/drivers/ddebug/dd_draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/ddebug/dd_draw.c b/src/gallium/drivers/ddebug/dd_draw.c index 35ae774..8cc51fc 100644 --- a/src/gallium/drivers/ddebug/dd_draw.c +++ b/src/gallium/drivers/ddebug/dd_draw.c @@ -556,7 +556,7 @@ dd_kill_process(void) fprintf(stderr, "dd: Aborting the process...\n"); fflush(stdout); fflush(stderr); - abort(); + exit(1); } static bool _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
