ref: d36eab0ab35f5647d19ea6ebdeacfd4f0e1152f0
parent: ecb2a6bf9235c78b366a61c5228b2278cd5fe859
author: Diego Biurrun <diego@biurrun.de>
date: Fri Oct 31 15:51:10 EDT 2014
libdvdcss: Simplify cache directory name creation.
--- a/src/libdvdcss.c
+++ b/src/libdvdcss.c
@@ -478,12 +478,11 @@
* date and serial number, but different keys. */
if( dvdcss->b_scrambled )
{
- psz_key[0] = '-';
for( i = 0; i < KEY_SIZE; i++ )
{
- sprintf( &psz_key[1+i*2], "%.2x", dvdcss->css.p_disc_key[i] );
+ sprintf( &psz_key[i * 2], "%.2x", dvdcss->css.p_disc_key[i] );
}
- psz_key[1 + KEY_SIZE * 2] = '\0';
+ psz_key[KEY_SIZE * 2] = '\0';
}
else
{
@@ -491,7 +490,7 @@
}
/* We have a disc name or ID, we can create the cache subdirectory. */
- i = sprintf( dvdcss->psz_cachefile, "%s/%s-%s%s",
+ i = sprintf( dvdcss->psz_cachefile, "%s/%s-%s-%s",
psz_cache, psz_title, psz_serial, psz_key );
i_ret = mkdir( dvdcss->psz_cachefile, 0755 );
if( i_ret < 0 && errno != EEXIST )