Commit a72e39dc authored by sail@chromium.org's avatar sail@chromium.org

Small bug in PPAPI graphics_2_example

BUG=


Review URL: https://chromiumcodereview.appspot.com/10832359

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152237 0039d316-1c4b-4281-b951-d872f2087c98
parent 0885d618
...@@ -104,6 +104,7 @@ struct InstanceInfo* FindInstance(PP_Instance instance) { ...@@ -104,6 +104,7 @@ struct InstanceInfo* FindInstance(PP_Instance instance) {
while (cur) { while (cur) {
if (cur->pp_instance == instance) if (cur->pp_instance == instance)
return cur; return cur;
cur = cur->next;
} }
return NULL; return NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment