Wasm3 entering a minimal maintenance phase
1–10 of 162 posts
Re: Wasm3 entering a minimal maintenance phase
#2> I regret to inform the community that since my house was destroyed by russians who invaded my country, Wasm3 will enter a minimal maintenance phase. At this time, I am unable to continue the development of new features. However, I am committed to keeping the project alive and will actively review and merge incoming Pull Requests. I deeply appreciate your understanding and support during this difficult period. Your contributions to Wasm3 are now more valuable than ever.
The linked tweet (edit: from September 2022) shows a video of the destroyed house and invites people who want to help to donate.
Re: Wasm3 entering a minimal maintenance phase
#3The explanation: > I regret to inform the community that since my house was destroyed by russians who invaded my country, Wasm3 will enter a minimal maintenance phase. At this time, I am unable to continue the development of new features. However, I am committed to keeping the project alive and will actively review and merge incoming Pull Requests. I deeply appreciate your understanding and support during this diffic…
Re: Wasm3 entering a minimal maintenance phase
#4The explanation: > I regret to inform the community that since my house was destroyed by russians who invaded my country, Wasm3 will enter a minimal maintenance phase. At this time, I am unable to continue the development of new features. However, I am committed to keeping the project alive and will actively review and merge incoming Pull Requests. I deeply appreciate your understanding and support during this diffic…
Re: Wasm3 entering a minimal maintenance phase
#5Re: Wasm3 entering a minimal maintenance phase
#6The explanation: > I regret to inform the community that since my house was destroyed by russians who invaded my country, Wasm3 will enter a minimal maintenance phase. At this time, I am unable to continue the development of new features. However, I am committed to keeping the project alive and will actively review and merge incoming Pull Requests. I deeply appreciate your understanding and support during this diffic…
Ouch. That house needs a new roof ASAP to halt the rain and snow.
Re: Wasm3 entering a minimal maintenance phase
#7The explanation: > I regret to inform the community that since my house was destroyed by russians who invaded my country, Wasm3 will enter a minimal maintenance phase. At this time, I am unable to continue the development of new features. However, I am committed to keeping the project alive and will actively review and merge incoming Pull Requests. I deeply appreciate your understanding and support during this diffic…
Re: Wasm3 entering a minimal maintenance phase
#8Re: Wasm3 entering a minimal maintenance phase
#9Re: Wasm3 entering a minimal maintenance phase
#10[flagged]
I usually put all the resource freeing at the end of a function under a goto label, or only a few lines within the allocation, so it's easy to visually confirm everything is cleaned up. The way this commit frees the resources inside of if blocks is not how I would have done it. And if I find I let a leak in the code I usually refactor to make the correctness more obvious.
In this example, the fact that m3_ParseModule takes ownership of the wasm pointer is very tricky. It looks like there is still a leak but there is not.