diff options
-rw-r--r-- | src/network.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/network.c b/src/network.c index efa0bc7a..43ee5734 100644 --- a/src/network.c +++ b/src/network.c @@ -839,6 +839,10 @@ void __ofono_netreg_set_base_station_name(struct ofono_netreg *netreg, const char *path = __ofono_atom_get_path(netreg->atom); const char *base_station = name ? name : ""; + /* Cell ID changed, but we don't have a cell name, nothing to do */ + if (netreg->base_station == NULL && name == NULL) + return; + if (netreg->base_station) g_free(netreg->base_station); |