Skip to content

Commit

Permalink
Merge pull request #8 from MeetLima/master
Browse files Browse the repository at this point in the history
fix: make cmp_write_object handle CMP_TYPE_STR8
  • Loading branch information
camgunz committed Nov 4, 2014
2 parents 73e60d3 + 91975d9 commit d8da71d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1018,6 +1018,8 @@ bool cmp_write_object(cmp_ctx_t *ctx, cmp_object_t *obj) {
return cmp_write_fixext8_marker(ctx, obj->as.ext.type);
case CMP_TYPE_FIXEXT16:
return cmp_write_fixext16_marker(ctx, obj->as.ext.type);
case CMP_TYPE_STR8:
return cmp_write_str8_marker(ctx, obj->as.str_size);
case CMP_TYPE_STR16:
return cmp_write_str16_marker(ctx, obj->as.str_size);
case CMP_TYPE_STR32:
Expand Down

0 comments on commit d8da71d

Please sign in to comment.