Explorar el Código

fix non-multithreaded case

Julius Pfrommer hace 9 años
padre
commit
1d4d80d23b
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      src/server/ua_server_worker.c

+ 2 - 0
src/server/ua_server_worker.c

@@ -231,7 +231,9 @@ static UA_StatusCode addRepeatedJob(UA_Server *server, struct AddRepeatedJob * r
     }
     matchingTw->jobs[matchingTw->jobsSize] = arw->job;
     matchingTw->jobsSize++;
+#ifdef UA_MULTITHREADING
     UA_free(arw);
+#endif
     return UA_STATUSCODE_GOOD;
 }