From patchwork Fri Dec 9 13:37:22 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: alexandros.frantzis@linaro.org X-Patchwork-Id: 5558 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 5F39923E0C for ; Fri, 9 Dec 2011 13:37:25 +0000 (UTC) Received: from mail-bw0-f52.google.com (mail-bw0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id 4A0C9A1804B for ; Fri, 9 Dec 2011 13:37:25 +0000 (UTC) Received: by bke17 with SMTP id 17so4007389bke.11 for ; Fri, 09 Dec 2011 05:37:25 -0800 (PST) Received: by 10.204.156.82 with SMTP id v18mr3886709bkw.126.1323437844829; Fri, 09 Dec 2011 05:37:24 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.205.129.2 with SMTP id hg2cs114092bkc; Fri, 9 Dec 2011 05:37:24 -0800 (PST) Received: by 10.152.132.39 with SMTP id or7mr4878058lab.14.1323437843157; Fri, 09 Dec 2011 05:37:23 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id tv10si1080896lab.9.2011.12.09.05.37.22 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 09 Dec 2011 05:37:23 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1RZ0de-0008I3-GI for ; Fri, 09 Dec 2011 13:37:22 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 71449E03C8 for ; Fri, 9 Dec 2011 13:37:22 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: glmark2 X-Launchpad-Branch: ~glmark2-dev/glmark2/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 173 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~glmark2-dev/glmark2/trunk] Rev 173: SceneBuffer: Properly initialize WaveMesh pointer. Message-Id: <20111209133722.17810.53170.launchpad@ackee.canonical.com> Date: Fri, 09 Dec 2011 13:37:22 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14450"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: cfe3be32b233d2935e7fa216a3107f21d3916331 ------------------------------------------------------------ revno: 173 committer: Alexandros Frantzis branch nick: trunk timestamp: Thu 2011-12-08 15:15:50 +0200 message: SceneBuffer: Properly initialize WaveMesh pointer. modified: src/scene-buffer.cpp --- lp:glmark2 https://code.launchpad.net/~glmark2-dev/glmark2/trunk You are subscribed to branch lp:glmark2. To unsubscribe from this branch go to https://code.launchpad.net/~glmark2-dev/glmark2/trunk/+edit-subscription === modified file 'src/scene-buffer.cpp' --- src/scene-buffer.cpp 2011-11-11 11:07:15 +0000 +++ src/scene-buffer.cpp 2011-12-08 13:15:50 +0000 @@ -294,6 +294,7 @@ struct SceneBufferPrivate { WaveMesh *wave; + SceneBufferPrivate() : wave(0) {} ~SceneBufferPrivate() { delete wave; } };