muscle applet on a javacard, or other non-javacard card edge host. I learned that
the EstablishConnection API entry point rescans the xml configuration attributes.
(2) In dyn_win32.c, CloseLibrary() may have the handling of the Freelibrary return value
switched around.
Surely (!ret) should imply SCARD_F_UNKNOWN_ERROR (replacing the existing "ret" condition.)
See: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/freelibrary.asp
int DYN_CloseLibrary(void **pvLHandle)
{
int ret; ret = FreeLibrary(*pvLHandle);
*pvLHandle = 0; if (ret)
{
#if 0
DebugLogB("DYN_CloseLibrary: dlerror() reports %s", dlerror());
#endif
return SCARD_F_UNKNOWN_ERROR;
}return SCARD_S_SUCCESS; }
_________________________________________________________________
MSN Messenger with backgrounds, emoticons and more. http://www.msnmessenger-download.com/tracking/cdp_customize
_______________________________________________ Muscle mailing list [EMAIL PROTECTED] http://lists.musclecard.com/mailman/listinfo/muscle
