Compare commits

..

No commits in common. "95014a212394be9efe06f68ab2414ff3bcfa24b2" and "7332dcaa1d88cb252089944afa7ea42db5d8ae8a" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,7 @@ jobs:
- name: zip artifact
run: zip -r ${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip wiiu
- name: Create Release
uses: "softprops/action-gh-release@v2"
uses: "softprops/action-gh-release@v1"
with:
tag_name: ${{ env.REPOSITORY_NAME }}-${{ env.DATETIME }}
draft: false

View File

@ -14,6 +14,7 @@ public:
}
~MemoryWrapper() {
if (mPtr && mFreeFn) {
DEBUG_FUNCTION_LINE_ERR("Free memory wrapper for %08X %d", mPtr, mSize);
memset(mPtr, 0, mSize);
mFreeFn(mPtr);
}