[Bug 50758] New: Vbscript does not handle recursive calls

WineHQ Bugzilla wine-bugs at winehq.org
Tue Mar 2 04:39:57 CST 2021


https://bugs.winehq.org/show_bug.cgi?id=50758

            Bug ID: 50758
           Summary: Vbscript does not handle recursive calls
           Product: Wine
           Version: 6.3
          Hardware: x86-64
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: vbscript
          Assignee: wine-bugs at winehq.org
          Reporter: bunglehead at gmail.com
      Distribution: ---

Test with postgresql-9.3 installer from [1]. It runs a script during
installation that reports non-critical error to main install, script itself
terminates.

Reduced test case for this looks like this:

---
function recursingfunction(x)
    if (x) then exit function
    call recursingfunction(True)
end function

call recursingfunction(False)
---

That leads to the following fixme, exactly that happens with the installer:

---
0024:fixme:vbscript:variant_call unsupported on 006BF6F0 {VT_EMPTY}
---

[1] https://www.enterprisedb.com/postgresql-tutorial-resources-training?cid=340

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list