04-12-2023, 04:15 PM
To clarify, this is allowed, it sounds like you're hitting a bug. Variable-length Strings in UDTs is a new feature in QB64, it should work with ReDim and
From what bplus said, QB64 is not properly initializing any new memory added from a ReDim if you use
_Preserve.
From what bplus said, QB64 is not properly initializing any new memory added from a ReDim if you use
_Preserve(which wouldn't surprise me...). IMO this should be fixed, but it might be a little annoying to implement due to
_Preservebeing a bit jank. Manually initializing the new entries sounds like it will solve it for the moment (that's what I unintentionally did in some code I wrote a few days ago, it works fine and uses both ReDim and variable-length strings in a UDT).