Comment #8 on issue 20627 by [email protected]: Flash locks up on Linux  
Chrome (bisected)
http://code.google.com/p/chromium/issues/detail?id=20627

Well, I found the problem.  Comment out this line, and it's fixed.
file_util::AbsolutePath(&path);


That function would be better named AbsoluteWTF().  Take a look:

bool AbsolutePath(std::wstring* path_str) {
   FilePath path(FilePath::FromWStringHack(*path_str));
   if (!AbsolutePath(&path))
     return false;
   *path_str = path.ToWStringHack();
   return true;
}

It's... uh... recursive.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---

Reply via email to