Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2314)

Unified Diff: webkit/glue/webmenurunner_mac.mm

Issue 5302009: Fix a browser crasher with negative index set on select popups. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webmenurunner_mac.mm
diff --git a/webkit/glue/webmenurunner_mac.mm b/webkit/glue/webmenurunner_mac.mm
index b7e48bafcd46256fcd2c0b2e6843166960e21ddf..82328cdd022713e2712fa4a2f0c128fc0075e66c 100644
--- a/webkit/glue/webmenurunner_mac.mm
+++ b/webkit/glue/webmenurunner_mac.mm
@@ -113,8 +113,15 @@ BOOL gNewNSMenuAPI;
withBounds:(NSRect)bounds
initialIndex:(int)index {
if (gNewNSMenuAPI) {
- NSMenuItem* selectedItem = [menu_ itemAtIndex:index];
- [selectedItem setState:NSOnState];
+ int actualIndex;
+ if (index < 0 || index > [menu_ numberOfItems]) {
+ actualIndex = 0;
+ } else {
+ actualIndex = index;
+ }
+ NSMenuItem* selectedItem = [menu_ itemAtIndex:actualIndex];
+ if (actualIndex == index)
+ [selectedItem setState:NSOnState];
Scott Hess - ex-Googler 2010/12/01 01:29:51 If I understand this correctly, what you want is t
Jay Civelli 2010/12/01 02:07:13 Good idea. Done.
NSPoint anchor = NSMakePoint(NSMinX(bounds) + kPopupXOffset,
NSMaxY(bounds));
[menu_ popUpMenuPositioningItem:selectedItem
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698