Closed jlanza closed 9 years ago
I have compile the master and it seems that is working. The former command execution was with the last pre-release. Maybe something weird is there in the exec.
> gp -V
GlobalPlatformPro v0.3.4
Running on Windows 8.1 6.3 amd64, Java 1.8.0_45 by Oracle Corporation
I'm trying to check.
Error found:
System.arraycopy(newparams, 0, params, 2, params.length);
should be System.arraycopy(params, 0, newparams, 2, params.length);
as you are copying from params to newparams and not the other way around ;)
Actually I think the error has been solved in master branch.
This calls for a release, thanks.
I'm trying to install an applet that has parameters. The command used is:
The problem is that MY_PARAMS is 23 bytes long. I have set it with C917MY_PARAMS and only MY_PARAMS. Both returns the same error:
Besides, is there any way to set the privileges? Do I have to include them on the params as well?