Is anybody running spine successfully on linux 64bits ?
I will have to roll back on a 32 bits :/
cactid/spine - buffer Overflow on 64 bits sys
Moderators: Developers, Moderators
I have foud a bug in spine running on 64bit Fedora8.
on line 728 poller.c nixes a valid result.
A workaround for this is to declare a char tmp_string[256]; and replace line 728 with
Code: Select all
snprintf(snmp_oids[j].result, 254, strip_alpha(trim(snmp_oids[j].result)));
A workaround for this is to declare a char tmp_string[256]; and replace line 728 with
Code: Select all
snprintf(tmp_string, 254, strip_alpha(trim(snmp_oids[j].result)));
snprintf(snmp_oids[j].result, 254, tmp_string2);
Who is online
Users browsing this forum: No registered users and 4 guests