summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
authordmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-17 03:52:52 +0000
committerdmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-17 03:52:52 +0000
commite5be5cee3d371df763adb75b7e30e5cf5208e03c (patch)
treeeb6b1c872c084c4a1d11ef911ebd7bbb688c6789 /ppapi
parent46500c874a9c765f98b962d16184f57e898bb91c (diff)
downloadchromium_src-e5be5cee3d371df763adb75b7e30e5cf5208e03c.zip
chromium_src-e5be5cee3d371df763adb75b7e30e5cf5208e03c.tar.gz
chromium_src-e5be5cee3d371df763adb75b7e30e5cf5208e03c.tar.bz2
PPAPI: Fix infinite loop in 2d example
BUG=none Review URL: https://chromiumcodereview.appspot.com/19276007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211916 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r--ppapi/examples/2d/graphics_2d_example.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ppapi/examples/2d/graphics_2d_example.c b/ppapi/examples/2d/graphics_2d_example.c
index 8237cb6..085f0cf 100644
--- a/ppapi/examples/2d/graphics_2d_example.c
+++ b/ppapi/examples/2d/graphics_2d_example.c
@@ -138,6 +138,7 @@ void Instance_DidDestroy(PP_Instance instance) {
return;
}
prev_ptr = &cur->next;
+ cur = cur->next;
}
}