Bug 48946

Summary: Crash under WebCore::platformDefaultLanguage() when using Arabic language
Product: WebKit Reporter: Mike Thole <mthole>
Component: WebCore Misc.Assignee: Mike Thole <mthole>
Status: RESOLVED FIXED    
Severity: Normal CC: ap
Priority: P1 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: Mac   
OS: All   
Attachments:
Description Flags
Proposed patch ap: review+

Mike Thole
Reported 2010-11-03 13:27:51 PDT
After choosing the Arabic locale, launching Safari and navigating somewhere will cause a crash: 1 libobjc.A.dylib 0x7fff82ae8318 objc_msgSend_vtable13 + 0x10 > 2 com.apple.WebCore 0x101e0a5bd WebCore::platformDefaultLanguage() + 0x3d (Language.mm:100) 3 com.apple.WebCore 0x101e09e38 WebCore::defaultLanguage() + 0x38 (Language.cpp:72) 4 com.apple.WebKit 0x1012c9cc9 +[NSUserDefaults(WebNSUserDefaultsExtras) _webkit_preferredLanguageCode] + 0x19 (WebNSUserDefaultsExtras.mm:40) 5 com.apple.WebKit 0x1012fb835 +[WebView(WebPrivate) _standardUserAgentWithApplicationName:] + 0x55 (WebView.mm:550) 6 com.apple.Safari.framework 0x10020ae15 Safari::SWebView::defaultUserAgent() + 0x47 (SWebView.mac.mm:166)
Attachments
Proposed patch (2.38 KB, patch)
2010-11-03 13:38 PDT, Mike Thole
ap: review+
Mike Thole
Comment 1 2010-11-03 13:38:42 PDT
Created attachment 72863 [details] Proposed patch
Alexey Proskuryakov
Comment 2 2010-11-03 13:49:43 PDT
Comment on attachment 72863 [details] Proposed patch Oops.
Mike Thole
Comment 3 2010-11-03 13:55:28 PDT
Committed revision 71264.
Darin Adler
Comment 4 2010-11-03 14:14:23 PDT
Comment on attachment 72863 [details] Proposed patch View in context: https://bugs.webkit.org/attachment.cgi?id=72863&action=review > WebCore/platform/mac/Language.mm:62 > + NSString *httpStyleLanguageCode = nil; It would be clearer to define this just before it’s initialized rather than putting the definition at the top of the function. If you did that it would be clear you need not set it to nil since it’s already initialized in all code paths. > WebCore/platform/mac/Language.mm:79 > + } > + else We put the } on the same line as the “else” in WebKit coding style.
Mike Thole
Comment 5 2010-11-03 14:46:21 PDT
Tweaked style per Darin's comments in r71271.
Alexey Proskuryakov
Comment 6 2010-11-08 20:41:10 PST
Note You need to log in before you can comment on or make changes to this bug.