Skip to content

Commit

Permalink
Fix parsing PR ContentProtection KID
Browse files Browse the repository at this point in the history
  • Loading branch information
peak3d committed Jun 7, 2019
1 parent a88ac07 commit 4cb15f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/PRProtectionParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static void XMLCALL
{
char kid[17]; kid[16] = 0;
prkid2wvkid(reinterpret_cast<const char *>(buffer), kid);
parser->setKID(kid);
parser->setKID(std::string(kid, 16));
}
}
else if (strcmp(el, "LA_URL") == 0)
Expand Down

0 comments on commit 4cb15f0

Please sign in to comment.