This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
locale.c: name should be last resort when deciding if locale is utf8
[perl5.git] / malloc.c
index 2ba76b1..a99663e 100644 (file)
--- a/malloc.c
+++ b/malloc.c
@@ -1056,8 +1056,7 @@ emergency_sbrk(MEM_SIZE size)
   do_croak:
     MALLOC_UNLOCK;
     emergency_sbrk_croak("Out of memory during request for %"UVuf" bytes, total sbrk() is %"UVuf" bytes", (UV)size, (UV)(goodsbrk + sbrk_slack));
-    /* NOTREACHED */
-    assert(0);
+    assert(0); /* NOTREACHED */
     return NULL;
 }