uninitialised variable fix

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4613 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2003-03-21 22:06:05 +00:00
commit 6832625af8

View file

@ -5,6 +5,8 @@
extern int gcd(int x, int y);
%typemap(perl5,arginit) (int argc, char *argv[]) "$2 = 0;";
%typemap(perl5,in) (int argc, char *argv[]) {
AV *tempav;
SV **tv;