From b4db69f0dedd5485dcee28f1ffc3e194a5b1db88 Mon Sep 17 00:00:00 2001 From: Anoop C S Date: Mon, 15 Jun 2015 14:58:46 +0530 Subject: [PATCH] source3/registry: Fix CID 1273100 Stray semicolon Signed-off-by: Anoop C S Reviewed-by: Volker Lendecke Reviewed-by: Michael Adam --- source3/registry/regfio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/registry/regfio.c b/source3/registry/regfio.c index 5de2901946c..c895bc45a9c 100644 --- a/source3/registry/regfio.c +++ b/source3/registry/regfio.c @@ -224,7 +224,7 @@ static bool hbin_block_close( REGF_FILE *file, REGF_HBIN *hbin ) /* remove the block from the open list and flush it to disk */ for ( p=file->block_list; p && p!=hbin; p=p->next ) - ;; + ; if ( p == hbin ) { DLIST_REMOVE( file->block_list, hbin ); -- 2.47.3