Kernel - Cleaning up unneeded malloc() calls
[tpg/acess2.git] / Kernel / vfs / fs / root.c
index e9c9f09..22e60d4 100644 (file)
@@ -77,6 +77,9 @@ int Root_MkNod(tVFS_Node *Node, const char *Name, Uint Flags)
        
        ENTER("pNode sName xFlags", Node, Name, Flags);
        
+       if(strlen(Name) + 1 > sizeof(child->Name));
+               LEAVE_RET('i', 0);
+       
        // Find last child, while we're at it, check for duplication
        for( ; child; prev = child, child = child->Next )
        {
@@ -89,7 +92,6 @@ int Root_MkNod(tVFS_Node *Node, const char *Name, Uint Flags)
        child = Root_int_AllocFile();
        memset(child, 0, sizeof(tRamFS_File));
        
-       child->Name = malloc(strlen(Name)+1);
        strcpy(child->Name, Name);
        
        child->Parent = parent;
@@ -155,7 +157,7 @@ char *Root_ReadDir(tVFS_Node *Node, int Pos)
        
        for( ; child && Pos--; child = child->Next ) ;
        
-       if(Pos) return strdup(child->Name);
+       if(child)       return strdup(child->Name);
        
        return NULL;
 }

UCC git Repository :: git.ucc.asn.au