diff options
author | John Reck <jreck@google.com> | 2019-01-10 14:37:17 -0800 |
---|---|---|
committer | John Reck <jreck@google.com> | 2019-01-10 15:34:49 -0800 |
commit | 6104cea3fb0bddd766f390f9f4e2db9fc00b410e (patch) | |
tree | 3493ab6e3dc09dd9ffd027bc1fa85cc84abb2635 /libs/hwui/thread | |
parent | 8b9351ba04eef507d4ff97a84d0c13df60507daf (diff) |
Fix leak/crash in exit
Bug: 120440607
Test: hwuimacro32 doesn't crash
Change-Id: I35b7a924e338efb314f07b923ba22ffcf98f75ee
Diffstat (limited to 'libs/hwui/thread')
-rw-r--r-- | libs/hwui/thread/ThreadBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/thread/ThreadBase.h b/libs/hwui/thread/ThreadBase.h index f9de8a5037e5..8cdcc46b97fb 100644 --- a/libs/hwui/thread/ThreadBase.h +++ b/libs/hwui/thread/ThreadBase.h @@ -27,7 +27,7 @@ namespace android::uirenderer { -class ThreadBase : protected Thread { +class ThreadBase : public Thread { PREVENT_COPY_AND_ASSIGN(ThreadBase); public: |