Comment #7 on issue 17845 by [email protected]: SVG crashes http://code.google.com/p/chromium/issues/detail?id=17845
I haven't looked at the stack trace, but PassRefPtr<> becomes null after the first person grabs its pointer. In general, you only want to use a PassRefPtr<> once inside a function. Basically, it transfers its refcount to the receive and then nulls itself out. That avoids churn in the refcount. -- 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 -~----------~----~----~----~------~----~------~--~---
