From: Jason Ekstrand Date: Tue, 9 Jun 2015 19:35:21 +0000 (-0700) Subject: vk/compiler: Free the GL errors data X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d842a6965fe6990c7c4f52abf59008b2cb214a17;p=mesa.git vk/compiler: Free the GL errors data --- diff --git a/src/vulkan/compiler.cpp b/src/vulkan/compiler.cpp index de4d8839f70..6adf92b3662 100644 --- a/src/vulkan/compiler.cpp +++ b/src/vulkan/compiler.cpp @@ -687,6 +687,7 @@ anv_compiler_create(struct anv_device *device) void anv_compiler_destroy(struct anv_compiler *compiler) { + _mesa_free_errors_data(&compiler->brw->ctx); ralloc_free(compiler); }