smartnode / telebot

Telegram Bot API in C
https://elmurod.net/telebot
Apache License 2.0
159 stars 35 forks source link

Memory leak in telebot_get_updates() #46

Closed nekijbt closed 3 years ago

nekijbt commented 3 years ago

Defining another one internal variable "struct json_object *array" in curly braces makes next call "json_object_put(array)" meaningless, do not free LOST pointer to "array" and cause memory leak.

smartnode commented 3 years ago

Thanks for the fix.