jorton      2004/05/24 02:56:24

  Modified:    file_io/unix copy.c
  Log:
  * file_io/unix/copy.c (apr_file_transfer_contents): Remove redundant
  NULL-initializers.
  
  Revision  Changes    Path
  1.9       +1 -1      apr/file_io/unix/copy.c
  
  Index: copy.c
  ===================================================================
  RCS file: /home/cvs/apr/file_io/unix/copy.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -d -u -r1.8 -r1.9
  --- copy.c    13 Feb 2004 09:38:25 -0000      1.8
  +++ copy.c    24 May 2004 09:56:24 -0000      1.9
  @@ -22,7 +22,7 @@
                                                  apr_fileperms_t to_perms,
                                                  apr_pool_t *pool)
   {
  -    apr_file_t *s = NULL, *d = NULL;  /* init to null important for APR */
  +    apr_file_t *s, *d;
       apr_status_t status;
       apr_finfo_t finfo;
       apr_fileperms_t perms;
  
  
  

Reply via email to