Correctly check refCount in finalize.
PiperOrigin-RevId: 505057866
This commit is contained in:
parent
c29ab7f083
commit
e059d55d29
|
@ -158,7 +158,7 @@ public class GraphTextureFrame implements TextureFrame {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void finalize() throws Throwable {
|
protected void finalize() throws Throwable {
|
||||||
if (refCount >= 0 || nativeBufferHandle != 0) {
|
if (refCount > 0 || nativeBufferHandle != 0) {
|
||||||
logger.atWarning().log("release was not called before finalize");
|
logger.atWarning().log("release was not called before finalize");
|
||||||
}
|
}
|
||||||
if (!activeConsumerContextHandleSet.isEmpty()) {
|
if (!activeConsumerContextHandleSet.isEmpty()) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user