[ 3555103 ] wrong declaration of release attribute in _CIMCArgsFT
diff --git a/NEWS b/NEWS
index 0ffe4a9..0eb97b7 100644
--- a/NEWS
+++ b/NEWS
@@ -11,6 +11,7 @@
 - 3530609: Various BEAM Errors
 - 3435363: Wrong call of curl_global_cleanup()
 - 3547832: memory leak in backend/cimxml/grammer.c
+- 3555103: wrong declaration of release attribute in _CIMCArgsFT
 
 Changes in 2.2.3
 ================
diff --git a/cimc/cimcft.h b/cimc/cimcft.h
index 773ee3b..80613d5 100644
--- a/cimc/cimcft.h
+++ b/cimc/cimcft.h
@@ -434,7 +434,7 @@
 
   struct _CIMCArgsFT {
     int ftVersion;
-    CIMCStatus (*release) (CIMCArgs args);
+    CIMCStatus (*release) (CIMCArgs* args);
     CIMCArgs* (*clone) (CIMCArgs* args, CIMCStatus* rc);
     CIMCStatus (*addArg) (CIMCArgs* args, const char* name, CIMCValue* value, CIMCType type);
     CIMCData (*getArg) (CIMCArgs * args, const char * name, CIMCStatus * rc);
diff --git a/contributions.txt b/contributions.txt
index 4aad521..3629fae 100644
--- a/contributions.txt
+++ b/contributions.txt
@@ -57,3 +57,4 @@
 Michal Minar
 ------------
 07/31/2012 [ 3547832 ] memory leak in backend/cimxml/grammer.c
+09/10/2012 [ 3555103 ] wrong declaration of release attribute in _CIMCArgsFT