Browse Source

Remove reallocation log message from ManagedPixelBuffer

It adds a lot of noise to the debug output with little gain.
tags/v1.7.90
Pierre Ossman 7 years ago
parent
commit
e714412294
1 changed files with 0 additions and 1 deletions
  1. 0
    1
      common/rfb/PixelBuffer.cxx

+ 0
- 1
common/rfb/PixelBuffer.cxx View File

@@ -356,7 +356,6 @@ inline void
ManagedPixelBuffer::checkDataSize() {
unsigned long new_datasize = width_ * height_ * (format.bpp/8);
if (datasize < new_datasize) {
vlog.debug("reallocating managed buffer (%dx%d)", width_, height_);
if (data) {
delete [] data;
datasize = 0; data = 0;

Loading…
Cancel
Save