diff options
| author | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-09-12 20:16:55 +0200 |
|---|---|---|
| committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-09-12 20:18:43 +0200 |
| commit | 73e5dffdfd310bd09b5497f40db98f50eedeb31a (patch) | |
| tree | 09d3bad80ae373f9417fd7e859b3bec56453b144 | |
| parent | 505d4633cd7a4e8623ef70932cd7edc9f22e71d4 (diff) | |
| download | openocd_libswd-73e5dffdfd310bd09b5497f40db98f50eedeb31a.tar.gz openocd_libswd-73e5dffdfd310bd09b5497f40db98f50eedeb31a.tar.bz2 openocd_libswd-73e5dffdfd310bd09b5497f40db98f50eedeb31a.tar.xz openocd_libswd-73e5dffdfd310bd09b5497f40db98f50eedeb31a.zip | |
jim: fix crash when using Jim_ListInsertElements
Jim_ListInsertElements was simply forgotten from the
fn that registered all the APIs.
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
| -rw-r--r-- | src/helper/jim.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/helper/jim.c b/src/helper/jim.c index 071e5575..bb748387 100644 --- a/src/helper/jim.c +++ b/src/helper/jim.c @@ -9296,6 +9296,7 @@ void JimRegisterCoreApi(Jim_Interp *interp) JIM_REGISTER_API(CollectIfNeeded); JIM_REGISTER_API(GetIndex); JIM_REGISTER_API(NewListObj); + JIM_REGISTER_API(ListInsertElements); JIM_REGISTER_API(ListAppendElement); JIM_REGISTER_API(ListAppendList); JIM_REGISTER_API(ListLength); |
