https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c7af85b64bbe62035370d…
commit c7af85b64bbe62035370de2937b777406ac59b87
Author: Thomas Faber <thomas.faber(a)reactos.org>
AuthorDate: Sun Sep 16 15:25:27 2018 +0200
Commit: Thomas Faber <thomas.faber(a)reactos.org>
CommitDate: Sun Sep 30 16:11:42 2018 +0200
[BTRFS] Fix IRP leak.
This leaked at least one IRP for every write, making it the largest leak when
running with BTRFS as the system volume.
Thanks to Victor Perevertkin.
Submitted upstream thanks to Pierre:
https://github.com/maharmstone/btrfs/pull/106
---
drivers/filesystems/btrfs/write.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/filesystems/btrfs/write.c b/drivers/filesystems/btrfs/write.c
index 7ede09ee6a..6292d7efb0 100644
--- a/drivers/filesystems/btrfs/write.c
+++ b/drivers/filesystems/btrfs/write.c
@@ -2333,6 +2333,10 @@ void free_write_data_stripes(write_data_context* wtc) {
last_mdl = stripe->mdl;
+#ifdef __REACTOS__
+ if (stripe->Irp)
+ IoFreeIrp(stripe->Irp);
+#endif
le = le->Flink;
}
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ea0fd8a3956d003ee8166…
commit ea0fd8a3956d003ee81662d7f4dfb2e66d25a3a0
Author: Alexander Rechitskiy <art1st.tm(a)gmail.com>
AuthorDate: Sat Sep 29 17:43:32 2018 +0300
Commit: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito(a)reactos.org>
CommitDate: Sat Sep 29 16:43:32 2018 +0200
[README] Add a link to the nightly builds page for convenience (#881)
---
README.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/README.md b/README.md
index a011b4fa52..3762523468 100644
--- a/README.md
+++ b/README.md
@@ -62,6 +62,8 @@ build directory. This will create a CD image with a filename `bootcd.iso`.
See ["Building ReactOS"](http://www.reactos.org/wiki/Building_ReactOS) for more details.
+You can always download fresh binary builds of bootable images from the ["Daily builds"](https://www.reactos.org/getbuilds/) page.
+
## Installing
By default, ReactOS currently can only be installed on a machine that has a FAT16 or FAT32 partition as the active (bootable) partition.