Message ID | 20250114182143.1773762-6-pobrn@protonmail.com |
---|---|
State | New |
Headers | show
Return-Path: <libcamera-devel-bounces@lists.libcamera.org> X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 4764BC3301 for <parsemail@patchwork.libcamera.org>; Tue, 14 Jan 2025 18:22:19 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 0391E6854A; Tue, 14 Jan 2025 19:22:19 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=protonmail.com header.i=@protonmail.com header.b="rC0OLE2N"; dkim-atps=neutral Received: from mail-10630.protonmail.ch (mail-10630.protonmail.ch [79.135.106.30]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 7DA1768543 for <libcamera-devel@lists.libcamera.org>; Tue, 14 Jan 2025 19:22:17 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1736878936; x=1737138136; bh=4KsJUL43WBdIJl+z/IPEcU7jqnKztejvM2uOv6LYFvA=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector:List-Unsubscribe:List-Unsubscribe-Post; b=rC0OLE2NlJyn2+EMUl2GadB2ZtXuVU2UcS+pXFmlW5CZ2zPjtddEB1bFgBXCLGKlo DhA9KCattS5xw0xZZP3Ysa+LBUt2HmCGK+69nAiS/Uk0VgekeN/IP4dkEGrABERE0d 6v1U/t3fWPqbWwnoj1jO1VjUKtmurqGrKRDvzr85ydN6AV8V2Hi3IuaVTZRVwCBNGw GkRIGuq3GK1ewZ0NsJT/V1uWf7XGS7PnlkZ5TDOuJ66ckefdx5cbpS6woiWjJcd8pv V0qRfLvR+HtcmQ0TNwZ1wbBmykr8X5LuUdIP8fhN8U9/CYST1dHpJ1R5r41/11jx2R YfzkCy6LIl/ow== Date: Tue, 14 Jan 2025 18:22:10 +0000 To: libcamera-devel@lists.libcamera.org From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= <pobrn@protonmail.com> Cc: Jacopo Mondi <jacopo.mondi@ideasonboard.com>, Paul Elder <paul.elder@ideasonboard.com> Subject: [RFC PATCH v2 05/16] apps: lc-compliance: Initialize `CameraManager` pointer in `Environment` Message-ID: <20250114182143.1773762-6-pobrn@protonmail.com> In-Reply-To: <20250114182143.1773762-1-pobrn@protonmail.com> References: <20250114182143.1773762-1-pobrn@protonmail.com> Feedback-ID: 20568564:user:proton X-Pm-Message-ID: 42a4e038021d5e82c75ed42c7fc4578d6a698b6f MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: <libcamera-devel.lists.libcamera.org> List-Unsubscribe: <https://lists.libcamera.org/options/libcamera-devel>, <mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe> List-Archive: <https://lists.libcamera.org/pipermail/libcamera-devel/> List-Post: <mailto:libcamera-devel@lists.libcamera.org> List-Help: <mailto:libcamera-devel-request@lists.libcamera.org?subject=help> List-Subscribe: <https://lists.libcamera.org/listinfo/libcamera-devel>, <mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe> Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" <libcamera-devel-bounces@lists.libcamera.org> |
Series |
|
Related |
show
|
diff --git a/src/apps/lc-compliance/environment.h b/src/apps/lc-compliance/environment.h index 543e5372f..834c722ef 100644 --- a/src/apps/lc-compliance/environment.h +++ b/src/apps/lc-compliance/environment.h @@ -23,5 +23,5 @@ private: Environment() = default; std::string cameraId_; - libcamera::CameraManager *cm_; + libcamera::CameraManager *cm_ = nullptr; };