From patchwork Thu Sep 14 03:50:33 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jinjie Ruan X-Patchwork-Id: 94631 Received: from vger.kernel.org ([23.128.96.18]) by www.linuxtv.org with esmtp (Exim 4.92) (envelope-from ) id 1qgdO8-004LBA-G0; Thu, 14 Sep 2023 03:51:33 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234257AbjINDvd (ORCPT + 1 other); Wed, 13 Sep 2023 23:51:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49056 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229791AbjINDvc (ORCPT ); Wed, 13 Sep 2023 23:51:32 -0400 Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 53C0F99 for ; Wed, 13 Sep 2023 20:51:28 -0700 (PDT) Received: from kwepemi500008.china.huawei.com (unknown [172.30.72.56]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4RmNYf65l8ztSTt; Thu, 14 Sep 2023 11:47:18 +0800 (CST) Received: from huawei.com (10.90.53.73) by kwepemi500008.china.huawei.com (7.221.188.139) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.31; Thu, 14 Sep 2023 11:51:26 +0800 From: Jinjie Ruan To: , , , CC: Subject: [PATCH 0/2] media: siano: Fix two bugs in smsdvb_debugfs_create() Date: Thu, 14 Sep 2023 11:50:33 +0800 Message-ID: <20230914035035.3765754-1-ruanjinjie@huawei.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-Originating-IP: [10.90.53.73] X-ClientProxiedBy: dggems705-chm.china.huawei.com (10.3.19.182) To kwepemi500008.china.huawei.com (7.221.188.139) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-LSpam-Score: -2.4 (--) X-LSpam-Report: No, score=-2.4 required=5.0 tests=BAYES_00=-1.9,HEADER_FROM_DIFFERENT_DOMAINS=0.5,MAILING_LIST_MULTI=-1 autolearn=ham autolearn_force=no As debugfs_create_file() returns ERR_PTR and never NULL, check NULL is not correct to catch the error. And if kzalloc() fails in smsdvb_debugfs_create(), the dir and file which is created by debugfs_create_dir() and debugfs_create_file() is not freed. This patch set fix the above 2 bugs. Jinjie Ruan (2): media: siano: Fix the NULL vs IS_ERR() bug for debugfs_create_file() media: siano: Fix the missing err path in smsdvb_debugfs_create() drivers/media/common/siano/smsdvb-debugfs.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)