oops, allocating invalid amount of memory.


git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@608 59561ff5-6e30-0410-9f3c-9617f08c8826
diff --git a/skeletons/ANY.c b/skeletons/ANY.c
index 4c51963..54cc9a7 100644
--- a/skeletons/ANY.c
+++ b/skeletons/ANY.c
@@ -100,7 +100,7 @@
 
 	if(ANY_fromType(&tmp, td, sptr)) return 0;
 
-	st = (ANY_t *)CALLOC(1, sizeof(ANY_t *));
+	st = (ANY_t *)CALLOC(1, sizeof(ANY_t));
 	if(st) {
 		*st = tmp;
 		return st;