diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-17 03:52:52 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-17 03:52:52 +0000 |
commit | e5be5cee3d371df763adb75b7e30e5cf5208e03c (patch) | |
tree | eb6b1c872c084c4a1d11ef911ebd7bbb688c6789 /ppapi | |
parent | 46500c874a9c765f98b962d16184f57e898bb91c (diff) | |
download | chromium_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.c | 1 |
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; } } |