@Vadiml1024 requested changes on this pull request.
I would suggest some rework:
This code contains potential reentrancy problems because
of strtok usage... should be using strtok_r
In lot of places it uses sprintf, strcat, and strcpy which are subject to potential buffer overflows
in some places i see snprintf where source string size is passed as 2 parameter (buffer size). The idea is to pass target buffer size as second parameter
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.