× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



David Gibbs wrote:
Well, if it fails because it could not malloc some memory, would there be any indication of WHY it couldn't malloc the memory?

However, since I want to be a good C programmer (not that I'm really a C programmer at all, just hacking at it right now) ... what would be the best way to indicate that the routine could not malloc memory?

The prototype for the function is: char *str_base64_encode(char *str)

Here is an idea that might make things easier for you. Try changing the function prototype to this:


int str_base64_encode (char *str, char *result);

Then in the function do something like this with the malloc (sizeneeded is a numeric var that says how much memory you want to malloc):

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>

int str_base64_encode (char *str, char *result)
{
/* never malloc memory in a function that is used by a caller - use realloc */
realloc (result, sizeof (char) * sizeneeded);
if (result == NULL)
{
return errno;
}
do your processing here
...
return 0;
}


Then have your RPG program check what str_base64_encode() returns. If non-zero, check it against ENOMEM.

James Rich


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.