jpbarrette/curlpp

[BUG] Wrong value returned by info getter

wvenialbo opened this issue · 0 comments

In Info.cpp line 56:

value = (double)tmp;

should be

value = *(double*)&tmp;

otherwise, the raw int64 value is assigned.