Diff between 3e15a874c42ea8006ccb7b394f71238fc32d88a1 and 7b945b3f72fe0f97674e5b62f932a8f94f01b21b

Changed Files

File Additions Deletions Status
src/device.c +3 -0 modified

Full Patch

diff --git a/src/device.c b/src/device.c
index 83a794e..5506bc9 100644
--- a/src/device.c
+++ b/src/device.c
@@ -2655,6 +2655,9 @@ static char *load_cached_name(struct btd_device *device, const char *local,
 	char *str = NULL;
 	int len;
 
+	if (device_address_is_private(device))
+		return NULL;
+
 	snprintf(filename, PATH_MAX, STORAGEDIR "/%s/cache/%s", local, peer);
 
 	key_file = g_key_file_new();