correctly terminate the current logbuffer when partially written
This commit is contained in:
parent
e29e8eb591
commit
d63b4d1661
|
@ -72,7 +72,7 @@ public:
|
||||||
if (handled > 0){
|
if (handled > 0){
|
||||||
memmove(logBuffer,logBuffer+handled,wp-handled);
|
memmove(logBuffer,logBuffer+handled,wp-handled);
|
||||||
wp-=handled;
|
wp-=handled;
|
||||||
logBuffer[handled]=0;
|
logBuffer[wp]=0;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue