Parcourir la source

utils: Fix NULL pointer dereference with unexpected kernel behavior

Fix mostly theoretical NULL pointer dereference in
wpa_debug_open_linux_tracing() if /proc/mounts were to return a
malformed line.

Signed-off-by: Ayala Beker <ayala.beker@intel.com>
Ayala Beker il y a 9 ans
Parent
commit
819ad5b70b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/utils/wpa_debug.c

+ 1 - 1
src/utils/wpa_debug.c

@@ -148,7 +148,7 @@ int wpa_debug_open_linux_tracing(void)
 		strtok_r(line, " ", &tmp2);
 		tmp_path = strtok_r(NULL, " ", &tmp2);
 		fstype = strtok_r(NULL, " ", &tmp2);
-		if (strcmp(fstype, "debugfs") == 0) {
+		if (fstype && strcmp(fstype, "debugfs") == 0) {
 			path = tmp_path;
 			break;
 		}