I spent ~25 hours tracking down a bug in Firefox's Javascript engine, which we embed in our app. This included upgrading it from the one from FF 1.5 to the one from FF 4.0, which is much more complex (and faster). It still did not solve my problem, which was a crash bug.
So I took it upon myself to dig in and fix the bug. Eventually I fixed it with just one line:
"fun" stands for "function", but "!fun" describes exactly how painful this situation was.
Even more fun is now that I've made changes to the sourcecode, I need to go through hours of legal work including documenting the change and making it available to Mozilla & anyone who asks.
Carry on...
So I took it upon myself to dig in and fix the bug. Eventually I fixed it with just one line:
Code:
if (!fun) goto error;
Even more fun is now that I've made changes to the sourcecode, I need to go through hours of legal work including documenting the change and making it available to Mozilla & anyone who asks.
Carry on...
Comment