fix nullpointer

This commit is contained in:
Dominik Schürmann
2014-02-14 02:41:27 +01:00
parent 7939aaaa44
commit ee2fec1759
3 changed files with 17 additions and 3 deletions

View File

@@ -56,8 +56,11 @@ public class OpenPgpApi {
}
});
Bundle params = new Bundle();
params.putInt(OpenPgpConstants.PARAMS_API_VERSION, OpenPgpConstants.API_VERSION);
// blocks until result is ready
Bundle result = mService.sign(null, input, output);
Bundle result = mService.sign(params, input, output);
// close() is required to halt the TransferThread
output.close();