svn commit: r337766 - stable/11/contrib/flex

Brooks Davis brooks at FreeBSD.org
Tue Aug 14 16:22:05 UTC 2018


Author: brooks
Date: Tue Aug 14 16:22:04 2018
New Revision: 337766
URL: https://svnweb.freebsd.org/changeset/base/337766

Log:
  MFC r337508:
  
  Terminate filter_create_ext() args with NULL, not 0.
  
  filter_create_ext() is documented to take a NULL terminated set of
  arguments.  0 is promoted to an int so this would fail on 64-bit
  systems if the value was not passed in a register.  On all currently
  supported 64-bit architectures it is.
  
  Obtained from:	CheriBSD
  Sponsored by:	DARPA, AFRL

Modified:
  stable/11/contrib/flex/main.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/contrib/flex/main.c
==============================================================================
--- stable/11/contrib/flex/main.c	Tue Aug 14 16:18:56 2018	(r337765)
+++ stable/11/contrib/flex/main.c	Tue Aug 14 16:22:04 2018	(r337766)
@@ -364,7 +364,7 @@ void check_options ()
     output_chain = filter_create_int(NULL, filter_tee_header, headerfilename);
     if ( !(m4 = getenv("M4")))
         m4 = M4;
-    filter_create_ext(output_chain, m4, "-gP", 0);
+    filter_create_ext(output_chain, m4, "-gP", NULL);
     filter_create_int(output_chain, filter_fix_linedirs, NULL);
 
     /* For debugging, only run the requested number of filters. */


More information about the svn-src-stable-11 mailing list