adamvr / arduino-base64

A base64 library for the arduino platform, written in C
MIT License
183 stars 102 forks source link

string length bug #16

Open hydrocontrol opened 8 years ago

hydrocontrol commented 8 years ago

line 30: sizeof() includes the terminating NULL character, which is not intended behaviour. so either use sizeof()-1, or use strlen()