mbm: fix memory leak in connection state processing
This commit is contained in:
@@ -580,11 +580,12 @@ mbm_e2nap_received (MMSerialPort *port,
|
|||||||
gpointer user_data)
|
gpointer user_data)
|
||||||
{
|
{
|
||||||
int state = 0;
|
int state = 0;
|
||||||
const char *str;
|
char *str;
|
||||||
|
|
||||||
str = g_match_info_fetch (info, 1);
|
str = g_match_info_fetch (info, 1);
|
||||||
if (str)
|
if (str)
|
||||||
state = atoi (str);
|
state = atoi (str);
|
||||||
|
g_free (str);
|
||||||
|
|
||||||
if (MBM_E2NAP_DISCONNECTED == state) {
|
if (MBM_E2NAP_DISCONNECTED == state) {
|
||||||
g_debug ("%s: disconnected", __func__);
|
g_debug ("%s: disconnected", __func__);
|
||||||
|
Reference in New Issue
Block a user