1. 06 3月, 2008 9 次提交
  2. 05 3月, 2008 4 次提交
  3. 04 3月, 2008 15 次提交
  4. 03 3月, 2008 2 次提交
  5. 02 3月, 2008 3 次提交
  6. 01 3月, 2008 5 次提交
    • 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
    • A
      Remove long-unused and broken TCL_ARRAYS. · 7157114d
      Alvaro Herrera 提交于
      7157114d
    • T
      Reducing the assumed alignment of struct varlena means that the compiler · c67f6f2f
      Tom Lane 提交于
      is also licensed to put a local variable declared that way at an unaligned
      address.  Which will not work if the variable is then manipulated with
      SET_VARSIZE or other macros that assume alignment.  So the previous patch
      is not an unalloyed good, but on balance I think it's still a win, since
      we have very few places that do that sort of thing.  Fix the one place in
      tuptoaster.c that does it.  Per buildfarm results from gypsy_moth
      (I'm a bit surprised that only one machine showed a failure).
      c67f6f2f
  7. 29 2月, 2008 2 次提交
    • M
      Fix handling of restricted processes for Windows Vista (mainly), · 2d2b0222
      Magnus Hagander 提交于
      by explicitly adding back the user to the DACL of the new process.
      This fixes the failure case when executing as the Administrator
      user, which had no permissions left at all after we dropped the
      Administrators group.
      
      Dave Page with some modifications from me
      2d2b0222
    • B
      Update wording: · 4db0d87c
      Bruce Momjian 提交于
      < * Add Oracle-style packages  (Pavel)
      > * Add features of Oracle-style packages  (Pavel)
      4db0d87c