Skip to content

Commit

Permalink
indenit
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-du-car committed Apr 11, 2024
1 parent 0e1ee65 commit 0031344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v2i-hub/CARMACloudPlugin/src/CARMACloudPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ QByteArray CARMACloudPlugin::UncompressBytes(const QByteArray compressedBytes) c
strm.avail_out = BUFFER_SIZE;
strm.next_out = (Byte *)buffer;
isDone = inflate(&strm, Z_NO_FLUSH);
outBuf.append(buffer, BUFFER_SIZE - strm.avail_out);
outBuf.append(buffer, BUFFER_SIZE - strm.avail_out);
} while (Z_STREAM_END != isDone); // Reach the end of stream to be uncompressed
}else{
PLOG(logWARNING) << "Error initalize stream. Err code = " << err << std::endl;
Expand Down

0 comments on commit 0031344

Please sign in to comment.