Summary: | A plug-in makes Safari crash on http://www.itscodingtime.com/ | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Alexey Proskuryakov <ap> | ||||
Component: | Plug-ins | Assignee: | Alexey Proskuryakov <ap> | ||||
Status: | RESOLVED FIXED | ||||||
Severity: | Normal | CC: | webkit.review.bot | ||||
Priority: | P1 | Keywords: | InRadar | ||||
Version: | 528+ (Nightly build) | ||||||
Hardware: | Mac (Intel) | ||||||
OS: | OS X 10.6 | ||||||
Attachments: |
|
Description
Alexey Proskuryakov
2010-03-24 15:43:06 PDT
Created attachment 51566 [details]
proposed fix
Attachment 51566 [details] did not pass style-queue:
Failed to run "WebKitTools/Scripts/check-webkit-style" exit_code: 1
WebKit/mac/Plugins/Hosted/NetscapePluginHostProxy.h:46: More than one command on the same line [whitespace/newline] [4]
WebKit/mac/Plugins/Hosted/NetscapePluginHostProxy.h:47: More than one command on the same line [whitespace/newline] [4]
Total errors found: 2 in 4 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 51566 [details] proposed fix > +unsigned NetscapePluginHostProxy::s_processingRequests; It's good form to initialise this. In all honesty all the ++ and --'s make me wish we just had a struct to automatically increment and decrement this count. Comment on attachment 51566 [details]
proposed fix
r=me
Committed <http://trac.webkit.org/changeset/56474>. >> +unsigned NetscapePluginHostProxy::s_processingRequests; > It's good form to initialise this. I'm not sure about that - initializing with 0 just adds visual noise. |