-
Notifications
You must be signed in to change notification settings - Fork 30
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
Abend S0C4 in Logging #505
Comments
Is this a ticket resolved by The CAA fix? Interesting that HEAPPOOLS and HEAPPOOLS64 is off. Is that certain? Sometimes it is off in certain areas of the code but not others. |
This is happening on the customer's machine and I have sent them |
@1000TurquoisePogs Customer is using Zowe v3.0.0 - this version is without |
@Martin-Zeithaml, please provide a CEE dump if you have one. |
@Martin-Zeithaml , could you ask the customer to capture an SVC dump? 1. Disable the LE error handling Add 2. Set a slip trap Issue the following operator command: You may want to adjust the job name mask 3. When an SVC dump has been captured, remove the trap Issue the following operator command: |
Hello Can you please provide the name of the shell script which executes configmgr ? Regards |
The abend is caused by memcpy for a simple reason: in some cases, the
context
isNULL
, so we are trying to write that eyecatcher to address zero:I have added function ensureLE() to the
main
. It seems the LAA, LCA and CAA to be fine.The possible problem remains in
safeMalloc31
: it could possibly returnNULL
and there is no check forNULL
.The text was updated successfully, but these errors were encountered: