Subject: | array overrun |
In MySQL.xs, line 44, to[] is declared as a 16 character array. However, a 17 character string is sprintfed into it (16 hex digits plus the terminating null). The resulting array overrun causes a segmentation fault on my system. This is easily fixed by enlarging the array.