curlpp icon indicating copy to clipboard operation
curlpp copied to clipboard

[BUG] Wrong value returned by info getter

Open wvenialbo opened this issue 6 years ago • 0 comments

In Info.cpp line 56:

value = (double)tmp;

should be

value = *(double*)&tmp;

otherwise, the raw int64 value is assigned.

wvenialbo avatar Sep 09 '19 00:09 wvenialbo