Explorar o código

Memory leak in ServerNetworkLayerTCP_getJobs function

ServerNetworkLayerTCP_getJobs function allocate js variable (UA_Job type) but sometime, for some reasons return 0.

In this case UA_Server_run_mainloop function don't free js variable allocated by ServerNetworkLayerTCP_getJobs.
StalderT %!s(int64=9) %!d(string=hai) anos
pai
achega
01ac7d184e
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  1. 6 0
      examples/networklayer_tcp.c

+ 6 - 0
examples/networklayer_tcp.c

@@ -354,6 +354,12 @@ static UA_Int32 ServerNetworkLayerTCP_getJobs(UA_ServerNetworkLayer *nl, UA_Job
         j++;
     }
 
+    if (j == 0)
+    {
+    	free(js);
+    	js = NULL;
+    }
+
     *jobs = js;
     return j;
 }