Overview
Comment: | Improved Tcl 8.6 module loading support |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
87f454af73fb1879dd033cdf32e0d267 |
User & Date: | rkeene on 2010-10-10 05:33:34 |
Other Links: | manifest | tags |
Context
2010-10-10
| ||
05:36 | Updated test driver to not give false errors if a non-PIN related decryption error occurs check-in: be76ba4355 user: rkeene tags: trunk | |
05:33 | Improved Tcl 8.6 module loading support check-in: 87f454af73 user: rkeene tags: trunk | |
05:25 | Updated to support Tcl 8.6 file loading (untested) check-in: 295f01867c user: rkeene tags: trunk | |
Changes
Modified tclpkcs11.c from [0e48a30252] to [05f498a3e1].
︙ | |||
386 387 388 389 390 391 392 | 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 | + + - + + + + + - + + + - + | * Platform Specific Functions */ static void *tclpkcs11_int_load_module(const char *pathname) { #ifdef TCL_INCLUDES_LOADFILE int tcl_rv; Tcl_LoadHandle *new_handle; new_handle = (Tcl_LoadHandle *) ckalloc(sizeof(*new_handle)); |
︙ |