WebPositive: Fix incorrectly sized array

This commit is contained in:
Puck Meerburg 2015-01-28 23:02:17 +01:00
parent 3427ae3942
commit e366f3c164

View File

@ -2502,7 +2502,7 @@ BrowserWindow::_SmartURLHandler(const BString& url)
temp = "application/x-vnd.Be.URL.";
temp += proto;
const char* argv[1] = { url.String(), NULL };
const char* argv[] = { url.String(), NULL };
if (be_roster->Launch(temp.String(), 1, argv) == B_OK)
return;