Skip to content

Commit 0f28831

Browse files
committed
[fastfat_new]
- Fix FF_Free warning. svn path=/trunk/; revision=43725
1 parent f8fd318 commit 0f28831

File tree

1 file changed

+1
-1
lines changed
  • reactos/drivers/filesystems/fastfat_new

1 file changed

+1
-1
lines changed

reactos/drivers/filesystems/fastfat_new/fullfat.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ FF_Malloc(FF_T_UINT32 allocSize)
2626
VOID
2727
FF_Free(VOID *pBuffer)
2828
{
29-
return ExFreePoolWithTag(pBuffer, TAG_FULLFAT);
29+
ExFreePoolWithTag(pBuffer, TAG_FULLFAT);
3030
}
3131

3232
FF_T_SINT32

0 commit comments

Comments
 (0)