Skip to content

Commit

Permalink
status fields are static alloc
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Oct 9, 2015
1 parent 3e44fd0 commit 0fdfba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symmetric-client-clib/src/service/IncomingBatchService.c
Expand Up @@ -101,7 +101,7 @@ unsigned short SymIncomingBatchService_acquireIncomingBatch(SymIncomingBatchServ
printf("Ignoring batch %s-%ld", batch->nodeId, batch->batchId);
} else {
okayToProcess = 0;
SymStringBuilder_copyToField(&batch->status, existingBatch->status);
batch->status = existingBatch->status;
batch->byteCount = existingBatch->byteCount;
batch->databaseMillis = existingBatch->databaseMillis;
batch->networkMillis = existingBatch->networkMillis;
Expand Down

0 comments on commit 0fdfba2

Please sign in to comment.