-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Description
Describe the bug
Attempting to step through reading a very long string and setting to a variable causes an "Access Violation" and the debugging stops. This currently does not happen in VLIDE.
To Reproduce
Steps to reproduce the behavior:
- Point the "Crash.lsp" to where the "ReallyBigFile.txt" is located
- Start debugging "Crash.lsp" with a breakpoint on the "(setq ReallyLongString (read-line OpenFile))"
- Issue the command "CrashFunc" and AutoCAD will instantly generate an access violation error and quit debugging.
Expected behavior
In VLIDE the process takes approximately 3 minutes to complete (on my system) but does not cause an access violation and continues debugging. If that's not possible a more descriptive error would be desirable as it was very difficult to narrow down.
Desktop (please complete the following information):
- OS: Windows 10 64-Bit
- Version 21H2
Additional context
(defun c:CrashFunc ( / )
(progn
(setq FileName "C:\\Projects\\ReallyBigFile.txt")
(setq OpenFile (open FileName "r"))
(setq ReallyLongString (read-line OpenFile))
(close OpenFile)
(princ "Test Complete")
)
)
Metadata
Metadata
Assignees
Labels
No labels
