From da2cbb4fc81d12f1ee9150e72ec55fde47388a28 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 27 Jul 2013 02:41:03 +0200 Subject: Issue #15893: Remove dead code --- Python/frozenmain.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Python/frozenmain.c b/Python/frozenmain.c index 98f46eb..8b1f2d4 100644 --- a/Python/frozenmain.c +++ b/Python/frozenmain.c @@ -44,11 +44,6 @@ Py_FrozenMain(int argc, char **argv) setbuf(stderr, (char *)NULL); } - if (!argv_copy) { - fprintf(stderr, "out of memory\n"); - return 1; - } - oldloc = setlocale(LC_ALL, NULL); setlocale(LC_ALL, ""); for (i = 0; i < argc; i++) { -- cgit v0.12