diff options
author | Tim Rowley <[email protected]> | 2016-10-28 17:21:01 -0500 |
---|---|---|
committer | Tim Rowley <[email protected]> | 2016-11-14 09:02:11 -0600 |
commit | 2c697754a9d96855c30d1809e67cc676c59de7d1 (patch) | |
tree | 909a2f22fe22c61005618a8270b9564b803e8649 /src/gallium/drivers/swr/rasterizer/archrast/archrast.h | |
parent | dc8408920c8c5698d90d2fc7679a5b491ca71248 (diff) |
swr: [rasterizer archrast] fix double free issue
Reviewed-by: Bruce Cherniak <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr/rasterizer/archrast/archrast.h')
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/archrast/archrast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/archrast/archrast.h b/src/gallium/drivers/swr/rasterizer/archrast/archrast.h index bdb3afbed99..e6376f208fe 100644 --- a/src/gallium/drivers/swr/rasterizer/archrast/archrast.h +++ b/src/gallium/drivers/swr/rasterizer/archrast/archrast.h @@ -36,6 +36,6 @@ namespace ArchRast void DestroyThreadContext(HANDLE hThreadContext); // Dispatch event for this thread. - void dispatch(HANDLE hThreadContext, Event& event); + void Dispatch(HANDLE hThreadContext, Event& event); }; |