[BUGS-640a1] Len(r$)?, #myStr$+r$ CRASH

Post bugreports for the Windows version here
User avatar
skywalk
Addict
Addict
Posts: 4292
Joined: Wed Dec 23, 2009 10:14 pm
Location: Boston, MA

[BUGS-640a1] Len(r$)?, #myStr$+r$ CRASH

Post by skywalk »

Ok, lots of errors in big apps.
Structures with string arrays seem corrupt.
Cannot post snippet until this simple code runs without errors.

Code: Select all

EnableExplicit
#VER$           = "26.01.24"  ;-! -SET_VERSION
#SEMI$          = Chr(59):  #SEMI         = 59  ; ";"
#RPAREN$        = Chr(41):  #RPAREN       = 41  ; ")"
Global.s winTitle$        = "Version (" + #VER$ + #RPAREN$
Global.s r$ = #Empty$
Global.s r$ = Space(32)
r$ = "12345678223456783234567842345678523456786"
Global.i nPts
nPts = Len(winTitle$)
ShowMemoryViewer(@r$, 96)
CallDebugger
r$ = #SEMI$ + winTitle$ + #LF$
r$ + #SEMI$ + "len(winTitle$) = " + Str(nPts)
Debug r$
The nice thing about standards is there are so many to choose from. ~ Andrew Tanenbaum