mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 02:27:26 -07:00
fix buffer underflow read
This commit is contained in:
parent
25180af135
commit
a647ceda23
1 changed files with 1 additions and 1 deletions
|
@ -356,7 +356,7 @@ static void fPrintAndLog(FILE *stream, const char *fmt, ...) {
|
|||
va_start(argptr, fmt);
|
||||
vsnprintf(buffer, sizeof(buffer), fmt, argptr);
|
||||
va_end(argptr);
|
||||
if (buffer[strlen(buffer) - 1] == NOLF[0]) {
|
||||
if (strlen(buffer) > 0 && buffer[strlen(buffer) - 1] == NOLF[0]) {
|
||||
linefeed = false;
|
||||
buffer[strlen(buffer) - 1] = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue