Feb. 19, 2012
1:43 p.m.
what we did with Camillo last time is putting ^self bytecode into offending method. It is easy to do: - open an image which is close to one which is broken, find the offending method, then check its bytecode. now open the broken image in binary/hex editor and search for bytecode sequence. To make sure that you editing right place, you should choose the unique bytecode sequence, so if offending method is not-so unique, like '^ self foo' then look in method foo etc. Then you just change the first bytecode of that method to return nil or self (whatever fits) and like that image can boot and you will be able to fix it. -- Best regards, Igor Stasenko.