-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty command crashes CMS #98
Comments
It looks like bREXX, GCCLIB, and CMS are all at fault here.
Since this is occurring in bREXX 1.0.1 (i.e., it's not a new bREXX 1.1.x bug), I'm not going to rush fixes. I expect to hit all three in one way or another. |
By the way I was trying |
The C Standard Library's The PDPCLIB code (I can't find a repo that matches the code shipped in VM/CE 1.2 on the MAINTC 295 disk) doesn't even do that - it just returns RC=0 without issuing the command: int system(const char *string)
{
#ifdef __OS2__
...
#endif
#ifdef __WIN32__
...
#endif
#ifdef __MSDOS__
...
#endif
#if defined(__MVS__)
...
#endif
#if defined(__CMS__)
/* not implemented yet */
return (0);
#endif
} In contrast, the Rexx |
Stefan Haubenthal wrote to the h390-vm group:
Confirmed in both releases 1.0.1 and 1.1.1.
The text was updated successfully, but these errors were encountered: