Abhishekmishra2808 commented on code in PR #19900:
URL: https://github.com/apache/nuttx/pull/19900#discussion_r3968507585


##########
fs/mount/fs_automount.c:
##########
@@ -470,56 +482,56 @@ static void automount_mount(FAR struct 
automounter_state_s *priv)
   ret = automount_findinode(lower->mountpoint);
   switch (ret)
     {
-    case OK_EXIST:
+      case OK_EXIST:

Review Comment:
   Moved to docs commit.



##########
fs/mount/fs_automount.c:
##########
@@ -420,27 +426,33 @@ static int automount_findinode(FAR const char *path)
       /* No.. Not found */
 
       ret = OK_NOENT;
+      inode = NULL;
     }
+  else
+    {
+      inode_addref(inode);

Review Comment:
   Dropped the extra addref.



##########
sched/group/group_create.c:
##########
@@ -42,6 +41,10 @@
 #include "group/group.h"
 #include "tls/tls.h"
 
+#ifdef CONFIG_FS_CHROOT
+#  include "../../fs/fs_heap.h"

Review Comment:
   Switched back to kmm.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to