You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zookeeper.apache.org by ma...@apache.org on 2011/02/09 04:06:55 UTC

svn commit: r1068747 - in /zookeeper/trunk: CHANGES.txt src/c/include/zookeeper.h

Author: mahadev
Date: Wed Feb  9 03:06:55 2011
New Revision: 1068747

URL: http://svn.apache.org/viewvc?rev=1068747&view=rev
Log:
ZOOKEEPER-977. passing null for path_buffer in zoo_create (breed via mahadev)

Modified:
    zookeeper/trunk/CHANGES.txt
    zookeeper/trunk/src/c/include/zookeeper.h

Modified: zookeeper/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/zookeeper/trunk/CHANGES.txt?rev=1068747&r1=1068746&r2=1068747&view=diff
==============================================================================
--- zookeeper/trunk/CHANGES.txt (original)
+++ zookeeper/trunk/CHANGES.txt Wed Feb  9 03:06:55 2011
@@ -232,6 +232,8 @@ IMPROVEMENTS:
 
   ZOOKEEPER-500. Async methods shouldnt throw exceptions (fpj via breed)
 
+  ZOOKEEPER-977. passing null for path_buffer in zoo_create (breed via mahadev)
+
 NEW FEATURES:
   ZOOKEEPER-729. Java client API to recursively delete a subtree.
   (Kay Kay via henry)

Modified: zookeeper/trunk/src/c/include/zookeeper.h
URL: http://svn.apache.org/viewvc/zookeeper/trunk/src/c/include/zookeeper.h?rev=1068747&r1=1068746&r2=1068747&view=diff
==============================================================================
--- zookeeper/trunk/src/c/include/zookeeper.h (original)
+++ zookeeper/trunk/src/c/include/zookeeper.h Wed Feb  9 03:06:55 2011
@@ -1061,7 +1061,7 @@ ZOOAPI void zoo_deterministic_conn_order
  * \param path_buffer Buffer which will be filled with the path of the
  *    new node (this might be different than the supplied path
  *    because of the ZOO_SEQUENCE flag).  The path string will always be
- *    null-terminated.
+ *    null-terminated. This parameter may be NULL if path_buffer_len = 0.
  * \param path_buffer_len Size of path buffer; if the path of the new
  *    node (including space for the null terminator) exceeds the buffer size,
  *    the path string will be truncated to fit.  The actual path of the