1. 09 Apr, 2013 4 commits
  2. 08 Apr, 2013 3 commits
  3. 01 Apr, 2013 1 commit
  4. 29 Mar, 2013 2 commits
  5. 28 Mar, 2013 1 commit
  6. 27 Mar, 2013 2 commits
  7. 25 Mar, 2013 1 commit
  8. 23 Mar, 2013 1 commit
  9. 20 Mar, 2013 2 commits
  10. 19 Mar, 2013 2 commits
  11. 18 Mar, 2013 3 commits
  12. 17 Mar, 2013 8 commits
  13. 16 Mar, 2013 1 commit
  14. 13 Mar, 2013 3 commits
  15. 12 Mar, 2013 2 commits
  16. 11 Mar, 2013 4 commits
    • Jim Jagielski's avatar
      Merge r1442865, r1442759, r1442326, r1442309, r1448171, r1418556, r1448453,... · 5106119e
      Jim Jagielski authored
      Merge r1442865, r1442759, r1442326, r1442309, r1448171, r1418556, r1448453, r1425771, r1425772, r1425775 from trunk:
      
      Change bzero/bcopy into memset/memcpy
      
      PR 54346
      
      Can't figure out why we allocate len+2 bytes here. Len+1 should be enough.
      
      Fix valgrind warning about uninitialized memory in argument to semctl
      
      PR: 53690
      Submitted by: Mikhail T. <mi+apache aldan algebra com>
      
      
      fix valgrind warnings about uninitialized memory in syscall arguments
      
      
      This is useful info for mod_status ;)
      
      Add some __attribute__ for automatic format checking.
      Correct one catch in sed0.c.
      
      Correct some spelling.
      
      
      Replace strdup by ap_malloc to ensure a proper error message if out-of-memory.
      While there, only allocate memory for the string part we actually use.
      
      PR: 54345
      
      
      Exit with error message if out of mem
      
      
      htdbm, htpasswd: print error message if out of memory
      
      PR: 54345
      
      Submitted by: jailletc36, sf, sf, jim, jailletc36, minfrin, sf, sf, sf
      Reviewed/backported by: jim
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1455225 13f79535-47bb-0310-9956-ffa450edef68
      5106119e
    • Eric Covener's avatar
      promote · bf208be9
      Eric Covener authored
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1455224 13f79535-47bb-0310-9956-ffa450edef68
      bf208be9
    • Jim Jagielski's avatar
      Merge r1429559, r1451484 from trunk: · 7814fbac
      Jim Jagielski authored
      According top my testing 'SSL_SESSION_id2sz' is 4x faster with the use 'ap_bin2hex' instead of
      apr_snprintf(..., "%02X" for each character.
      Output is the same.
      
      I have left the uppercase conversion, because I'm unsure if it is usefull or not.
      
      SSL_SESSION_id2sz is only used for logging, having it in lowercase shouldn't be an issue.
      Submitted by: jailletc36
      Reviewed/backported by: jim
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1455223 13f79535-47bb-0310-9956-ffa450edef68
      7814fbac
    • Jim Jagielski's avatar
      Merge r1429564 from trunk: · bec4b540
      Jim Jagielski authored
      Use ap_bin2hex instead of sprintf(..., "%02x". It gives the same output and is faster.
      
      No real speedup should be achieved on production machine, because this is done
      only for characters that need to be escaped. 
      However, this will close PR 50919.
      
      Submitted by: jailletc36
      Reviewed/backported by: jim
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1455222 13f79535-47bb-0310-9956-ffa450edef68
      bec4b540