[bugfix][T108][bug-view-1640]【wifi】【gsw】 When the same process sets the ssid for the first time and connects to the hotspot, there is a callback print. When setting the ssid again and connecting to the hotspot, there is no callback print

Only Configure: No
Affected branch: GSW_V1453
Affected module: WIFI
Is it affected on IC: only ASR
Self-test: yes
Doc Update: no

Change-Id: I7f7ed8487efacabe12f25f33d6025861f5d5b46d
diff --git a/mbtk/libgsw_lib/gsw_wifi_interface_sdk.c b/mbtk/libgsw_lib/gsw_wifi_interface_sdk.c
index 06dae37..8a7d754 100644
--- a/mbtk/libgsw_lib/gsw_wifi_interface_sdk.c
+++ b/mbtk/libgsw_lib/gsw_wifi_interface_sdk.c
@@ -329,7 +329,7 @@
     }
 
     // 先停止事件监听线程
-    if (ap_event_context.running)
+    /*if (ap_event_context.running)
     {
         ap_event_context.running = 0;
         if (ap_event_context.thread_id != 0)
@@ -337,7 +337,7 @@
             pthread_join(ap_event_context.thread_id, NULL);
             ap_event_context.thread_id = 0;
         }
-    }
+    }*/
 
     char cmd[MAX_COMMAND_LEN];
     snprintf(cmd, sizeof(cmd), "killall hostapd");