[BACK]Return to auth-bozo.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / libexec / httpd

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/libexec/httpd/auth-bozo.c between version 1.9 and 1.9.6.2

version 1.9, 2010/05/10 14:44:19 version 1.9.6.2, 2014/05/22 11:37:13
Line 1 
Line 1 
 /*      $NetBSD$        */  /*      $NetBSD$        */
   
 /*      $eterna: auth-bozo.c,v 1.16 2010/05/10 14:36:37 mrg Exp $       */  /*      $eterna: auth-bozo.c,v 1.17 2011/11/18 09:21:15 mrg Exp $       */
   
 /*  /*
  * Copyright (c) 1997-2010 Matthew R. Green   * Copyright (c) 1997-2014 Matthew R. Green
  * All rights reserved.   * All rights reserved.
  *   *
  * Redistribution and use in source and binary forms, with or without   * Redistribution and use in source and binary forms, with or without
Line 119  bozo_auth_cleanup(bozo_httpreq_t *reques
Line 119  bozo_auth_cleanup(bozo_httpreq_t *reques
   
         if (request == NULL)          if (request == NULL)
                 return;                  return;
         if (request->hr_authuser)          free(request->hr_authuser);
                 free(request->hr_authuser);          free(request->hr_authpass);
         if (request->hr_authpass)          free(request->hr_authrealm);
                 free(request->hr_authpass);  
         if (request->hr_authrealm)  
                 free(request->hr_authrealm);  
 }  }
   
 int  int

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.9.6.2

CVSweb <webmaster@jp.NetBSD.org>