<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
According to the v4.2.4 manual, mpf_get_str can be called with a NULL
in the first argument:<br>
<blockquote>If str is NULL, the result string is allocated using the
current allocation function (see<br>
Chapter 14 [Custom Allocation], page 85). The block will be
strlen(str)+1 bytes, that<br>
being exactly enough for the string and null-terminator.<br>
</blockquote>
What I'd like to know is whether this block needs to be freed, and if
so, how? Is it simply a case of <br>
<blockquote>free( ptr, strlen(ptr)+1); <br>
</blockquote>
?<br>
<br>
Kind regards,<br>
Bruce.<br>
<br>
</body>
</html>