Index: app/src/cor/common_cor.cc
===================================================================
--- app/src/cor/common_cor.cc	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
+++ app/src/cor/common_cor.cc	(revision 40358d23e569b2d0d4697a192451fff347a48e96)
@@ -10,4 +10,9 @@
     {
       expand_path(args->dictionary_arg,dictionary);
+      if(file_accessible(dictionary)!=0)
+	{
+	  fprintf(stderr,"Cannot open the dictionary file: %s\nAborting.\n",dictionary);
+	  exit(1);
+	}
     }
   else if (args->dictionary_home_given && args->language_given)
@@ -16,4 +21,9 @@
       expand_path(args->dictionary_home_arg, buf);
       sprintf(dictionary,"%s/%s/cor.bin",buf,args->language_arg);
+      if(file_accessible(dictionary)!=0)
+	{
+	  fprintf(stderr,"Cannot open the dictionary file: %s\nAborting.\n",dictionary);
+	  exit(1);
+	}
     }
 }
