From: Pierre Schweitzer Date: Thu, 5 May 2016 06:48:56 +0000 (+0000) Subject: [BTRFS] X-Git-Tag: ReactOS-0.4.1^2~44 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=1393ed94776ef87842840b279565a68c6cfd7d28 [BTRFS] Mark the CORE-11057 fix as local change. CORE-11172 svn path=/trunk/; revision=71260 --- diff --git a/reactos/drivers/filesystems/btrfs/write.c b/reactos/drivers/filesystems/btrfs/write.c index c9705703a7e..c4d21533d8d 100644 --- a/reactos/drivers/filesystems/btrfs/write.c +++ b/reactos/drivers/filesystems/btrfs/write.c @@ -263,6 +263,10 @@ void add_to_space_list(chunk* c, UINT64 offset, UINT64 size, UINT8 type) { } if (s->offset >= offset && s->offset + s->size <= offset + size) { // delete entirely +#ifndef __REACTOS__ + RemoveEntryList(&s->list_entry); + +#endif if (s->offset + s->size == offset + size) { insbef = s->list_entry.Flink; RemoveEntryList(&s->list_entry);