1. 07 3月, 2008 2 次提交
  2. 06 3月, 2008 11 次提交
  3. 05 3月, 2008 4 次提交
  4. 04 3月, 2008 15 次提交
  5. 03 3月, 2008 2 次提交
  6. 02 3月, 2008 3 次提交
  7. 01 3月, 2008 3 次提交
    • T
      Fix unportable usages of tolower(). On signed-char machines, it is necessary · e04fa58d
      Tom Lane 提交于
      to explicitly cast the output back to char before comparing it to a char
      value, else we get the wrong result for high-bit-set characters.  Found by
      Rolf Jentsch.  Also, fix several places where <ctype.h> functions were being
      called without casting the argument to unsigned char; this is likewise
      unportable, but we keep making that mistake :-(.  These found by buildfarm
      member salamander, which I will desperately miss if it ever goes belly-up.
      e04fa58d
    • T
      Disable the undocumented xmlvalidate() function, which was unintentionally · 3bf822c4
      Tom Lane 提交于
      left in the code though it was not meant to be provided.  It represents a
      security hole because unprivileged users could use it to look at (at least the
      first line of) any file readable by the backend.  Fortunately, this is only
      possible if the backend was built with XML support, so the damage is at least
      mitigated; and 8.3 probably hasn't propagated into any security-critical uses
      yet anyway.  Per report from Sergey Burladyan.
      3bf822c4
    • A
      Don't call AddUserToDacl on Cygwin · 64f30bb2
      Andrew Dunstan 提交于
      64f30bb2