diff options
author | Bert Vermeulen <bert@biot.com> | 2012-02-14 03:28:53 +0100 |
---|---|---|
committer | Bert Vermeulen <bert@biot.com> | 2012-02-14 03:28:53 +0100 |
commit | 9b37109da365335c1b6da14f073513c7855872d8 (patch) | |
tree | 2fcd34e0572d7b70ae03ceacf56b5a42da4d2933 /controller.c | |
parent | 582c8473ffd456dfb0796974ef2c0b1b78de38a8 (diff) | |
download | libsigrokdecode-9b37109da365335c1b6da14f073513c7855872d8.tar.gz libsigrokdecode-9b37109da365335c1b6da14f073513c7855872d8.zip |
srd: don't load all protocol decoders unless we really need to.
Diffstat (limited to 'controller.c')
-rw-r--r-- | controller.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/controller.c b/controller.c index 05dbf3e..64d4416 100644 --- a/controller.c +++ b/controller.c @@ -100,11 +100,6 @@ SRD_API int srd_init(char *path) } } - if ((ret = srd_load_all_decoders()) != SRD_OK) { - Py_Finalize(); - return ret; - } - return SRD_OK; } |