From: ceriel Date: Fri, 4 Jun 1993 10:30:16 +0000 (+0000) Subject: Don't free filenames when lint X-Git-Tag: release-5-5~322 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=5092c4ece3a1f413c1507f4a8e7bd9fffbf045d8;p=ack.git Don't free filenames when lint --- 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; }