irvined1982 / arduino-ELM327

ELM327 Library for Arduino
GNU General Public License v2.0
70 stars 32 forks source link

Incorrect memory allocation #1

Closed weichih654 closed 9 years ago

weichih654 commented 9 years ago

byte Elm327::getBytes() { .... char cmd[5]; // Should cmd[6]; .... }

irvined1982 commented 9 years ago

Hi, Thanks for pointing this out, its fixed in 1bc36e2

Best regards

David

weichih654 commented 9 years ago

Thanks!