HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Tags
    3. crash
    Log in to post
    • All categories
    • d.healeyD

      HISE segfaults when loading large sample maps

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports crash bug segfault
      5
      0 Votes
      5 Posts
      117 Views
      ustkU

      @d-healey 🤷

    • d.healeyD

      [bug - fixed!] Timestretching + multi mic = instant crash

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports multi-mic timestretch crash bug
      17
      2 Votes
      17 Posts
      493 Views
      SimonS

      The CI for the fix seems to have got stuck https://github.com/christophhart/HISE/actions/runs/12342377762/job/34442128570

    • oskarshO

      Plugin Crashing DAW when quitting (Hardcoded FX, Preset System)

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports crash daw
      9
      0 Votes
      9 Posts
      205 Views
      oskarshO

      @Lindon https://github.com/christophhart/HISE/issues/741

      done

    • skyscapeparadiseS

      HISE Crashes When Loading the Loris Toolbox Project

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports loris crash report arm64 crash macos
      2
      0 Votes
      2 Posts
      149 Views
      F

      Hi @skyscapeparadise!

      Try compiling Hise without Loris. Here the example repo works fine.

      (btw experimenting with that tool, a bit overwhelming)

    • Matt_SFM

      External display buffers visualization crash

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports bug display buffer crash
      18
      0 Votes
      18 Posts
      873 Views
      Matt_SFM

      Ok, if someone hits the same issue, I might have found a solution for this. I don't know if that's the proper way of handling it, but it seems to be working ok.

      I chaned this bit, and replaced the assertion:

      bool isConstant() const override { jassert(ns != nullptr); auto v = ns->constObjects.getValueAt(index); // objects and arrays are not constant... return !v.isArray() && !v.isObject(); }

      by this :

      bool isConstant() const override { if (ns == nullptr) return false; auto v = ns->constObjects.getValueAt(index); // objects and arrays are not constant... return !v.isArray() && !v.isObject(); }
    • C

      Experiencing crashes with intensive paint routine. What can I do to fix this?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting paint routine crash
      8
      0 Votes
      8 Posts
      183 Views
      d.healeyD

      @cynthasiser Glad we solved it :)

    • S

      Plugin crashes Daw

      Watching Ignoring Scheduled Pinned Locked Moved General Questions vst3 crash daw project
      11
      0 Votes
      11 Posts
      672 Views
      d.healeyD

      @StephanS said in Plugin crashes Daw:

      have compiled a debug version and it's the same Problem. Plugin is crashing the daw and Standalone Version do not open at all.

      Did you attempt to debug the standalone version with Visual Studio?

      @StephanS said in Plugin crashes Daw:

      I have build Hise now several times and with several Versions of VS but it's all the same.

      That won't make any difference so don't worry about doing this.

      @StephanS said in Plugin crashes Daw:

      Is it possible to check the vst3 plugin after compile if anything is OK or can someone check it for me?

      Send me your entire project - without the samples (if there are any).

    • trillbillyT

      Preset Crashes DAW

      Watching Ignoring Scheduled Pinned Locked Moved General Questions preset crash preset crash
      35
      0 Votes
      35 Posts
      2k Views
      trillbillyT

      @Lindon @d-healey @Dan-Korneff @Matt_SF @DanH I did another rebuild and managed to get things saving correctly (so it seems). I messed with a few settings and properties so Im not 100% sure what it was but it's working so thats that. I appreciate all the help and input fellers!

    • d.healeyD

      [bug] Played RR group button causes HISE to freeze

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports bug mapping freeze crash
      1
      0 Votes
      1 Posts
      234 Views
      No one has replied
    • d.healeyD

      drawAlertWindowIcon breaks alert windows

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports look and feel bug crash compiled
      1
      0 Votes
      1 Posts
      242 Views
      No one has replied
    • d.healeyD

      Declaring multiple const variables on single line causes crash

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports crash multiple variables single line
      3
      2 Votes
      3 Posts
      365 Views
      Christoph HartC

      const and const var is the same. Not sure about the multiple duplication thingie, but just don't :)