Merge pull request #275 from xPaw/patch-2

Return an error on Err_OldFile instead of falling through to default case
This commit is contained in:
Vincent Herbet 2015-07-30 16:47:23 +02:00
commit 5c17b1c767

View File

@ -173,6 +173,7 @@ int load_amxscript(AMX *amx, void **program, const char *filename, char error[64
return (amx->error = AMX_ERR_NOTFOUND);
case CAmxxReader::Err_OldFile:
strcpy(error, "Plugin uses deprecated format. Update compiler");
return (amx->error = AMX_ERR_FORMAT);
default:
strcpy(error, "Unknown error");
return (amx->error = AMX_ERR_NOTFOUND);