~ubuntu-branches/ubuntu/precise/mesa/precise-security

« back to all changes in this revision

Viewing changes to src/gallium/drivers/i915/i915_flush.c

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers, Steve Beattie
  • Date: 2012-10-19 09:04:04 UTC
  • mfrom: (163.1.4 precise-proposed)
  • Revision ID: package-import@ubuntu.com-20121019090404-5zbjpsp6knv7zl3b
Tags: 8.0.4-0ubuntu0.2
[ Steve Beattie ]
* SECURITY UPDATE: samplers array overflow (LP: #1046933)
  - debian/patches/50-CVE-2012-2864.patch: ensure that more than
    MAX_SAMPLERS are not used
  - CVE-2012-2864

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
   draw_flush(i915->draw);
47
47
 
48
 
   if (i915->batch->map == i915->batch->ptr) {
 
48
   /* Only shortcut this if we have no fence, otherwise we must flush the
 
49
    * empty batchbuffer to get our fence back.
 
50
    */
 
51
   if (!fence && i915->batch && (i915->batch->map == i915->batch->ptr)) {
49
52
      return;
50
53
   }
51
54