Skip to content

Commit

Permalink
BASE64デコード処理がバグっていたのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
hcmiya committed May 25, 2019
1 parent c495892 commit 6d5b2cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/parse-tags.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ static void decode_base64(uint8_t *line, size_t n) {
if (b64idx == 64 && b64pos < 2) err_base64();
if (b64pos == 2 && b64idx == 64) {
b64term = true;
b64pos = 0;
b64idx = 0;
b64rawlen = 1;
}
if (b64pos == 3) {
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define OPUSCOMMENT_VERSION "1.5.3"
#define OPUSCOMMENT_VERSION "1.5.4"

#define OPUSCOMMENT_REVISION_YEAR (2019 - 1900)
#define OPUSCOMMENT_REVISION_MONTH (5 - 1)
#define OPUSCOMMENT_REVISION_DAY 10
#define OPUSCOMMENT_REVISION_DAY 25

0 comments on commit 6d5b2cf

Please sign in to comment.