[libaacs-devel] [PATCH] Fix name length checks for disc entries

2013-12-15 Thread rraptorr
From: Janusz Dziemidowicz add_entry() receives a hexstring, so the length check should be twice the number of bytes. --- src/file/keydbcfg-parser.y | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/file/keydbcfg-parser.y b/src/file/keydbcfg-parser.y index ea0a8dc..b

[libaacs-devel] [PATCH] Fix parsing of first title entry

2013-12-15 Thread rraptorr
From: Janusz Dziemidowicz f888ebf caused first title entry from KEYDB.cfg to be ignored as it is trying to add entries to uninitialized list, and just prints following warning: Error: No title list passed as parameter. Fix it by moving initialization to proper place. --- src/file/keydbcfg-parser

[libaacs-devel] add_entry() receives a hexstring, so the length check should be twice

2013-12-15 Thread Janusz Dziemidowicz
libaacs | branch: master | Janusz Dziemidowicz | Sun Dec 15 21:11:37 2013 +0200| [e3def00a3096d647779fb47948a68d21033610db] | committer: npzacs add_entry() receives a hexstring, so the length check should be twice the number of bytes. > http://git.videolan.org/gitweb.cgi/libaacs.git/?a=commit;

[libaacs-devel] Fix parsing of first title entry

2013-12-15 Thread Janusz Dziemidowicz
libaacs | branch: master | Janusz Dziemidowicz | Sun Dec 15 21:16:21 2013 +0200| [3fa97c179ac8e61ed53dfcd7a0f3e3f2e8a91c58] | committer: npzacs Fix parsing of first title entry f888ebf caused first title entry from KEYDB.cfg to be ignored as it is trying to add entries to uninitialized list, a