Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ static bool read_info(struct app *self, const uint8_t group,
}

static void *aligned_alloc_impl(size_t alignment, size_t size) {
#ifdef _MSC_VER
#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__)
return _aligned_malloc(size, alignment);
#else
// return aligned_alloc(alignment, size);
Expand Down Expand Up @@ -957,7 +957,7 @@ bool mec_mr3_print(const void *input, const size_t len) {
good = good && read_group(self, group, nitems, &info, &data);
}
// release memory:
#ifdef _MSC_VER
#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__)
_aligned_free(data.buffer);
#else
free(data.buffer);
Expand Down
Loading