NickVStepin commented on code in PR #470:
URL: https://github.com/apache/guacamole-server/pull/470#discussion_r1553200290


##########
src/libguac/string.c:
##########
@@ -44,6 +45,16 @@
  */
 #define REMAINING(n, length) (((n) < (length)) ? 0 : ((n) - (length)))
 
+int guac_itoa(char* restrict dest, unsigned int integer) {
+
+    /* Determine size of string. */
+    int str_size = snprintf(dest, 0, "%i", integer);

Review Comment:
   correct: int str_size = snprintf(dest, 0, "%i", integer)+1; // snprinf add 
\0 symbol to result.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@guacamole.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to