From 5092c4ece3a1f413c1507f4a8e7bd9fffbf045d8 Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 4 Jun 1993 10:30:16 +0000 Subject: [PATCH] Don't free filenames when lint --- lang/cem/cemcom.ansi/input.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lang/cem/cemcom.ansi/input.c b/lang/cem/cemcom.ansi/input.c index d45909608..0bfb80033 100644 --- a/lang/cem/cemcom.ansi/input.c +++ b/lang/cem/cemcom.ansi/input.c @@ -17,6 +17,7 @@ struct file_info finfo; #include #include "dbsymtab.h" +#include "lint.h" #ifndef NOPP #ifdef DBSYMTAB #include @@ -82,6 +83,8 @@ AtEoIF() #endif #endif /* NOPP */ if (WorkingDir[0] != '\0') free(WorkingDir); +#ifndef LINT if (FileName != source) free(FileName); +#endif return 0; } -- 2.34.1