@@ -74,7 +74,7 @@ STATIC void *realloc_ext(void *ptr, size_t n_bytes, bool allow_move) {
7474void * m_malloc (size_t num_bytes ) {
7575 void * ptr = malloc (num_bytes );
7676 if (ptr == NULL && num_bytes != 0 ) {
77- return m_malloc_fail (num_bytes );
77+ m_malloc_fail (num_bytes );
7878 }
7979#if MICROPY_MEM_STATS
8080 MP_STATE_MEM (total_bytes_allocated ) += num_bytes ;
@@ -100,7 +100,7 @@ void *m_malloc_maybe(size_t num_bytes) {
100100void * m_malloc_with_finaliser (size_t num_bytes ) {
101101 void * ptr = malloc_with_finaliser (num_bytes );
102102 if (ptr == NULL && num_bytes != 0 ) {
103- return m_malloc_fail (num_bytes );
103+ m_malloc_fail (num_bytes );
104104 }
105105#if MICROPY_MEM_STATS
106106 MP_STATE_MEM (total_bytes_allocated ) += num_bytes ;
@@ -115,7 +115,7 @@ void *m_malloc_with_finaliser(size_t num_bytes) {
115115void * m_malloc0 (size_t num_bytes ) {
116116 void * ptr = m_malloc (num_bytes );
117117 if (ptr == NULL && num_bytes != 0 ) {
118- return m_malloc_fail (num_bytes );
118+ m_malloc_fail (num_bytes );
119119 }
120120 // If this config is set then the GC clears all memory, so we don't need to.
121121 #if !MICROPY_GC_CONSERVATIVE_CLEAR
@@ -131,7 +131,7 @@ void *m_realloc(void *ptr, size_t new_num_bytes) {
131131#endif
132132 void * new_ptr = realloc (ptr , new_num_bytes );
133133 if (new_ptr == NULL && new_num_bytes != 0 ) {
134- return m_malloc_fail (new_num_bytes );
134+ m_malloc_fail (new_num_bytes );
135135 }
136136#if MICROPY_MEM_STATS
137137 // At first thought, "Total bytes allocated" should only grow,
0 commit comments