From 165fe027f0e4eb4ee753865f0910336391168e49 Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 19 May 2009 07:28:00 +0000 Subject: [PATCH] Another deadlock fix --- panda/src/grutil/openCVTexture.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/grutil/openCVTexture.cxx b/panda/src/grutil/openCVTexture.cxx index 4a41efa0ab..f9f402ed7a 100644 --- a/panda/src/grutil/openCVTexture.cxx +++ b/panda/src/grutil/openCVTexture.cxx @@ -241,7 +241,7 @@ update_frame(int frame, int z) { grutil_cat.spam() << "Updating OpenCVTexture page " << z << "\n"; VideoPage &page = _pages[z]; if (page._color.is_valid() || page._alpha.is_valid()) { - modify_ram_image(); + do_modify_ram_image(); } if (page._color.is_valid()) { nassertv(get_num_components() >= 3 && get_component_width() == 1);