commit | 4dc780e366cecbea1bbee95193be4f30635b2727 | [log] [tgz] |
---|---|---|
author | Conley Owens <cco3@android.com> | Wed Apr 27 12:28:05 2011 -0700 |
committer | Android Code Review <code-review@android.com> | Wed Apr 27 12:28:05 2011 -0700 |
tree | fa9f66be9b40a0fd303b54f824a795935e351480 | |
parent | 9deec6fe2ab75787bdbb83764cbc98bcca9fe7f8 [diff] | |
parent | 0d11baf88920660cf0e30b25b7268a9459e8ffa5 [diff] |
Merge "Add lock before calling initEglImage"
diff --git a/libs/utils/RefBase.cpp b/libs/utils/RefBase.cpp index 0bd1af4..d28b751 100644 --- a/libs/utils/RefBase.cpp +++ b/libs/utils/RefBase.cpp
@@ -480,7 +480,7 @@ void RefBase::weakref_type::trackMe(bool enable, bool retain) { - static_cast<const weakref_impl*>(this)->trackMe(enable, retain); + static_cast<weakref_impl*>(this)->trackMe(enable, retain); } RefBase::weakref_type* RefBase::createWeak(const void* id) const