~ubuntu-branches/ubuntu/quantal/mysql-5.5/quantal-security

« back to all changes in this revision

Viewing changes to storage/innobase/dict/dict0load.c

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2013-07-23 19:08:38 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20130723190838-5gq97s6jx3163lx0
Tags: 5.5.32-0ubuntu0.12.10.1
* SECURITY UPDATE: Update to 5.5.32 to fix security issues (LP: #1203828)
  - http://www.oracle.com/technetwork/topics/security/cpujuly2013-1899826.html
  - CVE-2013-1861
  - CVE-2013-3783
  - CVE-2013-3793
  - CVE-2013-3802
  - CVE-2013-3804
  - CVE-2013-3809
  - CVE-2013-3812
* SECURITY UPDATE: insecure creation of debian.cnf file
  - debian/mysql-server-5.5.postinst: set umask to 066 before creating
    debian.cnf.
  - CVE-2013-2162
* Adjust Apparmor profile to allow reading PID file. (LP: #1185573)
* Fix FTBFS from test suite failure
  - debian/patches/72_fix_rpl_deadlock_innodb_test.patch: ignore warning
    from rpl.rpl_deadlock_innodb test in mysql-test/include/mtr_warnings.sql.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (c) 1996, 2010, Innobase Oy. All Rights Reserved.
 
3
Copyright (c) 1996, 2013, Innobase Oy. All Rights Reserved.
4
4
 
5
5
This program is free software; you can redistribute it and/or modify it under
6
6
the terms of the GNU General Public License as published by the Free Software
352
352
 
353
353
                /* Update statistics if DICT_TABLE_UPDATE_STATS
354
354
                is set */
355
 
                dict_update_statistics(*table, FALSE /* update even if
356
 
                                       initialized */);
 
355
                dict_update_statistics(
 
356
                        *table,
 
357
                        FALSE, /* update even if initialized */
 
358
                        FALSE /* update even if not changed too much */);
357
359
        }
358
360
 
359
361
        return(NULL);