]> AND Public Git Repository - simgrid.git/blobdiff - src/xbt/log.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix pip builds
[simgrid.git] / src / xbt / log.cpp
index cb1a3ecaa7be4083cce8da2f96ad8a8a4f8ef45e..ef3fd942cd354a4ed24216208a5645cb739a914f 100644 (file)
@@ -1,6 +1,6 @@
 /* log - a generic logging facility in the spirit of log4j                  */
 
-/* Copyright (c) 2004-2019. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2004-2020. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -175,6 +175,7 @@ void _xbt_log_event_log(xbt_log_event_t ev, const char *fmt, ...)
       va_start(ev->ap, fmt);
       done = cat->layout->do_layout(cat->layout, ev, fmt);
       va_end(ev->ap);
+      ev->buffer = nullptr; // Calm down, static analyzers, this pointer to local array wont leak out of the scope.
       if (done) {
         appender->do_append(appender, buff);
       } else {