1 parent d7a52e1 commit 26d4a6fCopy full SHA for 26d4a6f
1 file changed
py/malloc.c
@@ -117,9 +117,6 @@ void *m_malloc_with_finaliser(size_t num_bytes) {
117
118
void *m_malloc0(size_t num_bytes) {
119
void *ptr = m_malloc(num_bytes);
120
- if (ptr == NULL && num_bytes != 0) {
121
- m_malloc_fail(num_bytes);
122
- }
123
// If this config is set then the GC clears all memory, so we don't need to.
124
#if !MICROPY_GC_CONSERVATIVE_CLEAR
125
memset(ptr, 0, num_bytes);
0 commit comments