Browse Source

qcacld-3.0: Add a check for proc_entry

If proc_entry is not initialized and remove procfs function is invoked
then it may lead to system crash.

To avoid the above issue add a check whether proc_entry is initialized or
not.

Change-Id: I45987309e096808dce7eccad498098d292204ff0
CRs-Fixed: 3048483
Abdul Muqtadeer Ahmed 3 years ago
parent
commit
2e1c32c5ba
1 changed files with 2 additions and 0 deletions
  1. 2 0
      core/hdd/src/wlan_hdd_memdump.c

+ 2 - 0
core/hdd/src/wlan_hdd_memdump.c

@@ -255,6 +255,8 @@ static int hdd_driver_memdump_procfs_init(struct hdd_context *hdd_ctx)
  */
 static void hdd_driver_memdump_procfs_remove(void)
 {
+	if (!proc_file_driver)
+		return;
 	remove_proc_entry(PROCFS_DRIVER_DUMP_NAME, proc_dir_driver);
 	pr_debug("/proc/%s/%s removed\n", PROCFS_DRIVER_DUMP_DIR,
 					  PROCFS_DRIVER_DUMP_NAME);