aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2017-03-15 21:32:09 -0400
committercnlohr <lohr85@gmail.com>2017-03-15 21:32:09 -0400
commit2b93b2c57f8fea99ed9a5de520b274696e058faf (patch)
treeefb55c68a7d7a381fad625acbd2a3f67195b5b82 /src
parenteeb4bc3ce4c70be89cbe963075907eceebe77d18 (diff)
downloadlibsurvive-2b93b2c57f8fea99ed9a5de520b274696e058faf.tar.gz
libsurvive-2b93b2c57f8fea99ed9a5de520b274696e058faf.tar.bz2
fix puff for headset.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/survive.c4
-rwxr-xr-xsrc/survive_vive.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/survive.c b/src/survive.c
index 1b5bed1..3c16353 100755
--- a/src/survive.c
+++ b/src/survive.c
@@ -253,8 +253,8 @@ struct SurviveObject * survive_get_so_by_name( struct SurviveContext * ctx, cons
int survive_simple_inflate( struct SurviveContext * ctx, const char * input, int inlen, char * output, int outlen )
{
unsigned long ol = outlen;
- unsigned long il = inlen;
- int ret = puff( output, &ol, input, &il );
+ unsigned long il = inlen-2;
+ int ret = puff( output, &ol, input+2, &il );
if( ret == 0 )
return ol;
else
diff --git a/src/survive_vive.c b/src/survive_vive.c
index fc05647..12d8c16 100755
--- a/src/survive_vive.c
+++ b/src/survive_vive.c
@@ -711,7 +711,7 @@ int survive_get_config( char ** config, struct SurviveViveData * sv, int devno,
int len = survive_simple_inflate( ctx, compressed_data, count, uncompressed_data, sizeof(uncompressed_data)-1 );
if( len <= 0 )
{
- SV_INFO( "Error: data for config descriptor %d:%d is bad.", devno, iface );
+ SV_INFO( "Error: data for config descriptor %d:%d is bad. (%d)", devno, iface, len );
return -5;
}