Fixing a mutex unlock bug in correlation.c

This commit is contained in:
BlackLight 2011-02-14 15:57:13 +01:00
parent e0e669f278
commit f191faf2ff
1 changed files with 9 additions and 0 deletions

View File

@ -673,13 +673,22 @@ AI_alert_correlation_thread ( void *arg )
snprintf ( corr_ps_file , sizeof ( corr_ps_file ), "%s/correlated_alerts.ps" , config->corr_alerts_dir );
if ( !( gvc = gvContext() ))
{
pthread_mutex_unlock ( &mutex );
continue;
}
if ( !( fp = fopen ( corr_dot_file, "r" )))
{
pthread_mutex_unlock ( &mutex );
continue;
}
if ( !( g = agread ( fp )))
{
pthread_mutex_unlock ( &mutex );
continue;
}
gvLayout ( gvc, g, "dot" );
gvRenderFilename ( gvc, g, "png", corr_png_file );