Added by emanuele lombardi almost 11 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
Thanks for the information! I have fixed this.
Cheers,
Uwe