diff options
-rw-r--r-- | z01.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -974,7 +974,8 @@ int main(int argc, char *argv[]) while( run_num <= runs_to_do ); #if LOCALE_ON - catclose(MsgCat); + if (MsgCat != (nl_catd)-1) + catclose(MsgCat); #endif exit(0); |