aboutsummaryrefslogtreecommitdiff
path: root/src/main/extractor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/extractor.c')
-rw-r--r--src/main/extractor.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/extractor.c b/src/main/extractor.c
index b5db010..90db784 100644
--- a/src/main/extractor.c
+++ b/src/main/extractor.c
@@ -636,6 +636,11 @@ EXTRACTOR_extract (struct EXTRACTOR_PluginList *plugins,
636 { 636 {
637 /* need to create shared memory segment */ 637 /* need to create shared memory segment */
638 shm = EXTRACTOR_IPC_shared_memory_create_ (DEFAULT_SHM_SIZE); 638 shm = EXTRACTOR_IPC_shared_memory_create_ (DEFAULT_SHM_SIZE);
639 if (NULL == shm)
640 {
641 LOG ("Failed to setup IPC\n");
642 return;
643 }
639 } 644 }
640 for (pos = plugins; NULL != pos; pos = pos->next) 645 for (pos = plugins; NULL != pos; pos = pos->next)
641 if ( (NULL == pos->channel) && 646 if ( (NULL == pos->channel) &&