]> Zhao Yanbai Git Server - minix.git/commitdiff
procfs: resolve Coverity warnings
authorDavid van Moolenbroek <david@minix3.org>
Tue, 7 Aug 2012 11:08:26 +0000 (13:08 +0200)
committerDavid van Moolenbroek <david@minix3.org>
Wed, 8 Aug 2012 22:16:34 +0000 (00:16 +0200)
servers/procfs/tree.c

index 26848e9621c2e7ecd1f77d22010822a5d7d99805..f4dfa49ce1e5f4b542f24bb9849f3655ad027c46 100644 (file)
@@ -411,14 +411,14 @@ static void pid_read(struct inode *node)
 /*===========================================================================*
  *                             pid_link                                     *
  *===========================================================================*/
-static int pid_link(struct inode *UNUSED(node), char *ptr, int UNUSED(max))
+static int pid_link(struct inode *UNUSED(node), char *ptr, int max)
 {
        /* The contents of a symbolic link in a PID directory are requested.
         * This function is a placeholder for future use.
         */
 
        /* Nothing yet. */
-       strcpy(ptr, "");
+       strlcpy(ptr, "", max);
 
        return OK;
 }