We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Anytime malloc is called, the result should be checked in case it is NULL and ENOMEM occurred.
ENOMEM
PIM-Embedding-Lookup/upmem/src/emb_host.c
Line 61 in 1830cfb
buffers = malloc(NR_TABLES*sizeof(struct embedding_buffer*)); if (buffers == NULL) { // ... }
The text was updated successfully, but these errors were encountered:
That is true. Thanks
Sorry, something went wrong.
No branches or pull requests
Anytime malloc is called, the result should be checked in case it is NULL and
ENOMEM
occurred.PIM-Embedding-Lookup/upmem/src/emb_host.c
Line 61 in 1830cfb
The text was updated successfully, but these errors were encountered: