You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bj...@apache.org on 2002/06/30 10:14:49 UTC

cvs commit: apr/build aplibtool.c

bjh         2002/06/30 01:14:49

  Modified:    build    aplibtool.c
  Log:
  Fix missing NULL terminator for arg list when generating the import library.
  
  Revision  Changes    Path
  1.11      +1 -0      apr/build/aplibtool.c
  
  Index: aplibtool.c
  ===================================================================
  RCS file: /home/cvs/apr/build/aplibtool.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- aplibtool.c	13 Mar 2002 20:39:08 -0000	1.10
  +++ aplibtool.c	30 Jun 2002 08:14:49 -0000	1.11
  @@ -716,6 +716,7 @@
   
               export_args[num_export_args++] = implib_file;
               export_args[num_export_args++] = def_file;
  +            export_args[num_export_args++] = NULL;
               spawnvp(P_WAIT, export_args[0], export_args);
           }
       }