Re: AW: [Exim] buffer overflow?

Top Page
Delete this message
Reply to this message
Author: Tim Waugh
Date:  
To: Hirling Endre
CC: exim-users
Subject: Re: AW: [Exim] buffer overflow?
On Mon, Jun 18, 2001 at 05:38:09PM +0200, Hirling Endre wrote:

> +static char* prepared_address;

[...]
> +    prepared_address = (char*)malloc(hossz+1);

[...]
> +    return prepared_address;

[...]

Now you have a memory leak, and a missing out-of-memory check.

Tim.
*/