~ubuntu-branches/ubuntu/trusty/postgresql-9.3/trusty-security

« back to all changes in this revision

Viewing changes to src/include/pg_config.h.win32

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2016-02-11 15:44:43 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20160211154443-hmgw1nqsuckp5pa9
Tags: 9.3.11-0ubuntu0.14.04
* New upstream security/bug fix release: (LP: #1544576)
  - Fix infinite loops and buffer-overrun problems in regular expressions.
    Very large character ranges in bracket expressions could cause infinite
    loops in some cases, and memory overwrites in other cases.
    (CVE-2016-0773)
  - Prevent certain PL/Java parameters from being set by non-superusers.
    This change mitigates a PL/Java security bug (CVE-2016-0766), which was
    fixed in PL/Java by marking these parameters as superuser-only. To fix
    the security hazard for sites that update PostgreSQL more frequently
    than PL/Java, make the core code aware of them also.
  - See release notes for details about other fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
572
572
#define PACKAGE_NAME "PostgreSQL"
573
573
 
574
574
/* Define to the full name and version of this package. */
575
 
#define PACKAGE_STRING "PostgreSQL 9.3.10"
 
575
#define PACKAGE_STRING "PostgreSQL 9.3.11"
576
576
 
577
577
/* Define to the version of this package. */
578
 
#define PACKAGE_VERSION "9.3.10"
 
578
#define PACKAGE_VERSION "9.3.11"
579
579
 
580
580
/* Define to the name of a signed 64-bit integer type. */
581
581
#define PG_INT64_TYPE long long int
582
582
 
583
583
/* PostgreSQL version as a string */
584
 
#define PG_VERSION "9.3.10"
 
584
#define PG_VERSION "9.3.11"
585
585
 
586
586
/* PostgreSQL version as a number */
587
 
#define PG_VERSION_NUM 90310
 
587
#define PG_VERSION_NUM 90311
588
588
 
589
589
/* Define to the one symbol short name of this package. */
590
590
#define PACKAGE_TARNAME "postgresql"