Skip to content

Commit

Permalink
Merge pull request #491 from zowe/v3.x/bosWrite
Browse files Browse the repository at this point in the history
Hide `bos extend currSiz` debug message
  • Loading branch information
JoeNemo authored Sep 25, 2024
2 parents d5372ea + 58d93f3 commit 954377e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Zowe Common C Changelog

## `3.1.0`
- Bugfix: removed "ByteOutputStream" debug message, which was part of the `zwe` command output (#491)

## `3.0.0`
- Feature: added javascript `zos.getStatvfs(path)` function to obtain file system information (#482).
- Add support for LE 64-bit in isgenq.c (#422).
Expand Down
2 changes: 2 additions & 0 deletions c/yaml2json.c
Original file line number Diff line number Diff line change
Expand Up @@ -731,8 +731,10 @@ ByteOutputStream *makeByteOutputStream(int chunkSize){
int bosWrite(ByteOutputStream *bos, char *data, int dataSize){
if (bos->size+dataSize > bos->capacity){
int extendSize = (bos->chunkSize > dataSize) ? bos->chunkSize : dataSize;
#ifdef NDEBUG
printf("bos extend currSize=0x%x dataSize=0x%x chunk=0x%x extend=0x%x\n",
bos->size,dataSize,bos->chunkSize,extendSize);
#endif
int newCapacity = bos->capacity + extendSize;
char *newData = safeMalloc(newCapacity,"BOS extend");
memcpy(newData,bos->data,bos->size);
Expand Down

0 comments on commit 954377e

Please sign in to comment.