X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=bindings%2Fradio%2Fradio-rtlsdr.c;h=00ceba63211ead0bf59cd9097f2e8b0ea818315c;hb=bbddc1e584dd01b60042f622f8cecfc69361020b;hp=7f76306ebece4cfe33e30c4e15baa472bb8a96e6;hpb=1ea6bd0f466a10d29f12801aa35fb6d2b30443a1;p=src%2Fapp-framework-binder.git diff --git a/bindings/radio/radio-rtlsdr.c b/bindings/radio/radio-rtlsdr.c index 7f76306e..00ceba63 100644 --- a/bindings/radio/radio-rtlsdr.c +++ b/bindings/radio/radio-rtlsdr.c @@ -37,13 +37,13 @@ static struct dev_ctx **dev_ctx = NULL; /* Radio initialization should be done only when user start the radio and not at plugin initialization Making this call too early would impose to restart the binder to detect a radio */ unsigned char _radio_on (unsigned int num, radioCtxHandleT *ctx) { - + if (num >= _radio_dev_count()) return 0; - + if (init_dev_count < _radio_dev_count()) { init_dev_count = _radio_dev_count(); - dev_ctx = (dev_ctx_T**) realloc (dev_ctx, init_dev_count * sizeof(dev_ctx_T*)); + dev_ctx = (dev_ctx_T**) realloc (dev_ctx, init_dev_count * sizeof(dev_ctx_T*)); } dev_ctx[num] = (dev_ctx_T*) malloc (sizeof(dev_ctx_T)); @@ -69,7 +69,7 @@ void _radio_off (unsigned int num) { _radio_dev_free (dev_ctx[num]); free (dev_ctx[num]); } - + /* free(dev_ctx); */ }