Project

General

Profile

bug in src/StringUtilities.c of 1.6.4rc4

Added by emanuele lombardi about 10 years ago

Trying to install 1.6.4rc4 on my SLES11 SP3

I found that in src/StringUtilities.c
the follwoing line is wrong
temp_list = ( char* ) * (sep_count+1*) malloc( sizeof( char* ) * (sep_count+1));
I repalced it with this one:
temp_list = malloc( sizeof( char* ) * (sep_count+1));

In this way the compilation works properly.

Hoping this helps,
Emanuele


Replies (1)

RE: bug in src/StringUtilities.c of 1.6.4rc4 - Added by Uwe Schulzweida about 10 years ago

Thanks for the information! I have fixed this.

Cheers,
Uwe

    (1-1/1)