summaryrefslogtreecommitdiff
path: root/ext/fdf
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2001-08-13 07:55:39 +0000
committerRasmus Lerdorf <rasmus@php.net>2001-08-13 07:55:39 +0000
commit4d11d90880e63aaf125d09140775efdb287b9704 (patch)
tree00ed223eb953c2286b1b557548fbc4f73000f55c /ext/fdf
parent5b2227ea80b0fc5be46bfbdd9dd5ce4ac7825717 (diff)
downloadphp-git-4d11d90880e63aaf125d09140775efdb287b9704.tar.gz
Track down a few more functions that don't check for 0 args and use
faster mechanism
Diffstat (limited to 'ext/fdf')
-rw-r--r--ext/fdf/fdf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/fdf/fdf.c b/ext/fdf/fdf.c
index f09b7433da..08a9d00563 100644
--- a/ext/fdf/fdf.c
+++ b/ext/fdf/fdf.c
@@ -209,8 +209,9 @@ PHP_FUNCTION(fdf_create)
FDFDoc fdf;
FDFErc err;
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "") == FAILURE)
- return;
+ if (ZEND_NUM_ARGS() != 0) {
+ WRONG_PARAM_COUNT;
+ }
err = FDFCreate(&fdf);