QB64Team / qb64

BASIC for the modern era.

Home Page:https://www.qb64.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CLEAR causes segfaults in arrays of UDTs with variable length strings

flukiluke opened this issue · comments

To reproduce:

CLEAR
TYPE t
    a AS STRING
END TYPE
REDIM b AS t
b.a = ""

Commenting out the CLEAR allows it to run fine.

Fixed with 7413e2f