This was the reason why some people (especially SuSE10.0/gcc 4.0.2
users) couldn't see others in MP. I don't even know why I'm committing
that. It's less important than taxi lights ...
XDR_decode_float ( const xdr_data_t & f_Val )
{
float* tmp;
- xdr_data_t dummy;
+ static xdr_data_t dummy;
dummy = XDR_decode_int32 (f_Val);
tmp = (float*) &dummy;
XDR_decode_double ( const xdr_data2_t & d_Val )
{
double* tmp;
- xdr_data2_t dummy;
+ static xdr_data2_t dummy;
dummy = XDR_decode_int64 (d_Val);
tmp = (double*) &dummy;