Skip to content
Snippets Groups Projects
  1. May 15, 2024
  2. Mar 15, 2024
  3. Jan 16, 2024
  4. Jan 15, 2024
    • Martin Christoph Hierholzer's avatar
      fix: use after free · dba39544
      Martin Christoph Hierholzer authored
      ProcessVariableProxy::removeNode() was effectively taking a reference to
      a shared pointer as an argument and is removing the same (effective)
      shared pointer from a list. This poses a problem if the reference passed
      points to the list directly and is the last shared pointer to this
      object so it gets freed, because removeNode() is accessing the object
      after removing it from the list.
      dba39544
  5. Nov 23, 2023
  6. Oct 10, 2023
  7. Oct 04, 2023
  8. Sep 26, 2023
  9. Sep 25, 2023
  10. Sep 21, 2023
  11. Sep 19, 2023
  12. Aug 18, 2023
  13. Aug 08, 2023
  14. Jul 07, 2023
  15. Jun 14, 2023
  16. Jun 13, 2023
  17. May 16, 2023
  18. May 12, 2023
  19. Apr 27, 2023
    • Martin Christoph Hierholzer's avatar
      fix: type collisions with constants · 4df7f61a
      Martin Christoph Hierholzer authored
      Constants (as generated by ApplicationModule::constant()) were causing a
      logic_error if accessors of different types were using the same constant
      (created with the same value and the same value type upon creation).
      This is possible since the type passed to constant() does not have to be
      the same as the type of the accessor.
      
      This is now fixed by giving each constant a fully unique name, so every
      accessor using a constant will be in its own little variable network.
      4df7f61a
  20. Jan 26, 2023
  21. Jan 19, 2023
  22. Nov 28, 2022
  23. Nov 16, 2022
  24. Nov 11, 2022
    • Martin Christoph Hierholzer's avatar
      Mac OS compatibility (#265) · cfb2a3fe
      Martin Christoph Hierholzer authored
      
      * Use correct of version pthread_setname_np depending on platform.
      
      On Linux, this function takes two parameters. On most other platforms
      (including all BSD-based platforms) it only takes a single parameter.
      
      * Omit -Wl,--export-dynamic flag on macOS.
      
      This flag is not supported on Clang / LLVM and on macOS it is not needed
      anway because exporting all symbols is the default behavior.
      
      When using Clang on other platforms (e.g. Linux) --export_dynamic or
      -rdynamic might have to be specified instead.
      
      * clang compiler compatibility
      
      Co-authored-by: default avatarSebastian Marsching <sebastian.marsching-git-2016@aquenos.com>
      Unverified
      cfb2a3fe
  25. Nov 10, 2022
  26. Nov 09, 2022
  27. Nov 08, 2022
Loading