[ros-diffs] [reactos] 01/01: [CLASS2]: Fix status code on too small as exposed by kernel32:DeviceIoControl

2017-10-04 Thread Pierre Schweitzer
This is an automated email from the git hooks/post-receive script.

www-data pushed a commit to branch master
in repository reactos.

View the commit online:
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=75f1637f37d8f5ae700e766aed7cc848e37e5f8f

commit 75f1637f37d8f5ae700e766aed7cc848e37e5f8f
Author: Pierre Schweitzer 
AuthorDate: Wed Oct 4 21:13:25 2017 +0200

[CLASS2]: Fix status code on too small as exposed by 
kernel32:DeviceIoControl
---
 drivers/storage/class/class2/class2.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/storage/class/class2/class2.c 
b/drivers/storage/class/class2/class2.c
index 2f81022c5d..52fdf53d5e 100644
--- a/drivers/storage/class/class2/class2.c
+++ b/drivers/storage/class/class2/class2.c
@@ -4059,9 +4059,9 @@ Return Value:
 if (irpStack->Parameters.DeviceIoControl.OutputBufferLength < 
sizeof(MOUNTDEV_NAME)) {
 
 Irp->IoStatus.Information = 0;
-Irp->IoStatus.Status = STATUS_BUFFER_TOO_SMALL;
+Irp->IoStatus.Status = STATUS_INVALID_PARAMETER;
 IoCompleteRequest(Irp, IO_NO_INCREMENT);
-status = STATUS_BUFFER_TOO_SMALL;
+status = STATUS_INVALID_PARAMETER;
 goto SetStatusAndReturn;
 }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.



[ros-diffs] [reactos] 01/01: Delete README

2017-10-04 Thread Alexander Shaposhnikov
This is an automated email from the git hooks/post-receive script.

www-data pushed a commit to branch master
in repository reactos.

View the commit online:
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9f8693a4e4861a36d4dc7145f23201571a518f54

commit 9f8693a4e4861a36d4dc7145f23201571a518f54
Author: Alexander Shaposhnikov 
AuthorDate: Wed Oct 4 21:58:32 2017 +0300

Delete README
---
 README | 32 
 1 file changed, 32 deletions(-)

diff --git a/README b/README
deleted file mode 100644
index dcb2d9bddd..00
--- a/README
+++ /dev/null
@@ -1,32 +0,0 @@
-
-ReactOS� Version 0.4.x
-Updated January 5, 2016
-
-
-1. What is ReactOS?

-
-ReactOS� is an Open Source effort to develop a quality operating system that is
-compatible with applications and drivers written for the Microsoft� Windows� NT
-family of operating systems (NT4, 2000, XP, 2003, Vista, Seven).
-
-The ReactOS project, although currently focused on Windows Server 2003
-compatibility, is always keeping an eye toward compatibility with
-Windows Vista and future Windows NT releases.
-
-More information is available at: https://www.reactos.org
-
-2. Building ReactOS

-
-See the INSTALL file for more details.
-
-3. More information

-
-See the media\doc subdirectory for some sparse notes.
-
-4. Who is responsible
--
-
-See the CREDITS file.

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.



[ros-diffs] [reactos] 01/01: Delete README

2017-10-04 Thread Alexander Shaposhnikov
This is an automated email from the git hooks/post-receive script.

www-data pushed a commit to branch sanchaez-patch-1
in repository reactos.

View the commit online:
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c5103c6765f6310da59a6f2d3c01ca1b913e112b

commit c5103c6765f6310da59a6f2d3c01ca1b913e112b
Author: Alexander Shaposhnikov 
AuthorDate: Wed Oct 4 21:58:32 2017 +0300

Delete README
---
 README | 32 
 1 file changed, 32 deletions(-)

diff --git a/README b/README
deleted file mode 100644
index dcb2d9bddd..00
--- a/README
+++ /dev/null
@@ -1,32 +0,0 @@
-
-ReactOS� Version 0.4.x
-Updated January 5, 2016
-
-
-1. What is ReactOS?

-
-ReactOS� is an Open Source effort to develop a quality operating system that is
-compatible with applications and drivers written for the Microsoft� Windows� NT
-family of operating systems (NT4, 2000, XP, 2003, Vista, Seven).
-
-The ReactOS project, although currently focused on Windows Server 2003
-compatibility, is always keeping an eye toward compatibility with
-Windows Vista and future Windows NT releases.
-
-More information is available at: https://www.reactos.org
-
-2. Building ReactOS

-
-See the INSTALL file for more details.
-
-3. More information

-
-See the media\doc subdirectory for some sparse notes.
-
-4. Who is responsible
--
-
-See the CREDITS file.

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.



[ros-diffs] [reactos] 01/01: [VERSION] Use --abbrev=7 for "git describe" to enforce a short hash of 7 characters no matter what the default is for your Git installation.

2017-10-04 Thread Colin Finck
This is an automated email from the git hooks/post-receive script.

www-data pushed a commit to branch master
in repository reactos.

View the commit online:
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=71fba9dea18b1a8fe6be6a22bf25a273fd98f36d

commit 71fba9dea18b1a8fe6be6a22bf25a273fd98f36d
Author: Colin Finck 
AuthorDate: Wed Oct 4 20:44:52 2017 +0200

[VERSION] Use --abbrev=7 for "git describe" to enforce a short hash of 7 
characters no matter what the default is for your Git installation.
---
 sdk/include/reactos/version.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdk/include/reactos/version.cmake 
b/sdk/include/reactos/version.cmake
index 9c7cd1a9ee..808fb3b534 100644
--- a/sdk/include/reactos/version.cmake
+++ b/sdk/include/reactos/version.cmake
@@ -39,7 +39,7 @@ if(EXISTS "${REACTOS_SOURCE_DIR}/.git")
 endif()
 
 execute_process(
-COMMAND "${GIT_EXECUTABLE}" describe
+COMMAND "${GIT_EXECUTABLE}" describe --abbrev=7
 WORKING_DIRECTORY ${REACTOS_SOURCE_DIR}
 OUTPUT_VARIABLE GIT_DESCRIBE_REVISION
 RESULT_VARIABLE GIT_CALL_RESULT

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.



[ros-diffs] [reactos] 01/01: Update README.md

2017-10-04 Thread Alexander Shaposhnikov
This is an automated email from the git hooks/post-receive script.

www-data pushed a commit to branch readme-badges
in repository reactos.

View the commit online:
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=bbf41ad6faa7f09d87df43885c1d966bc8575f91

commit bbf41ad6faa7f09d87df43885c1d966bc8575f91
Author: Alexander Shaposhnikov 
AuthorDate: Wed Oct 4 18:05:07 2017 +0300

Update README.md

Added download badges.
---
 README.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 4e01ecfecb..abde59c6a6 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,10 @@
 # ReactOS Project
 
-Current version: __0.4.6__
 ![ReactOS Logo](https://reactos.org/wiki/images/0/02/ReactOS_logo.png)
 
+[![Release 
0.4.6](https://img.shields.io/badge/release-v0.4.6-green.svg)](https://sourceforge.net/projects/reactos/files/ReactOS/0.4.6/)
+[![ReactOS Build 
Environment](https://img.shields.io/badge/RosBE-v2.1.5-blue.svg)](https://sourceforge.net/projects/reactos/files/RosBE-Windows/i386/2.1.5/)
+
 ## Quick Links
 - [Website](https://reactos.org)
 - [Wiki](https://reactos.org/wiki)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.



[ros-diffs] [reactos] 01/01: Fix url typo in README (#9)

2017-10-04 Thread Goblenus
This is an automated email from the git hooks/post-receive script.

www-data pushed a commit to branch master
in repository reactos.

View the commit online:
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c609406c2fa73ccabb3b21462ebef85f9a40762e

commit c609406c2fa73ccabb3b21462ebef85f9a40762e
Author: Goblenus 
AuthorDate: Wed Oct 4 11:40:37 2017 +0300

Fix url typo in README (#9)
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index e5da30b2a6..4e01ecfecb 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ The code of ReactOS is licensed under [GNU GPL 
2.0+](https://spdx.org/licenses/G
 
 To build the system it is strongly advised to use the _ReactOS Build 
Environment
 (RosBE)._ Up-to-date versions for Windows and for Unix/GNU-Linux are available
-from our download page at: http://www.reactos.org/wiki/Build_Environment/
+from our download page at: http://www.reactos.org/wiki/Build_Environment
 
 Alternatively one can use Microsoft Visual C++ (MSVC) version 2010+. Building 
with MSVC is covered here: https://www.reactos.org/wiki/Building_with_MSVC
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.



[ros-diffs] [reactos] 02/03: Add .keep guard files in order to restore lost but empty directories we had with SVN. Note that when you start populating these directories, you can remove the associated

2017-10-04 Thread Hermès Bélusca-Maïto
This is an automated email from the git hooks/post-receive script.

www-data pushed a commit to branch master
in repository reactos.

View the commit online:
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=acdf04bad294a63360317ff0d77ad1d7f61e3c94

commit acdf04bad294a63360317ff0d77ad1d7f61e3c94
Author: Hermès Bélusca-Maïto 
AuthorDate: Wed Oct 4 02:19:57 2017 +0200

Add .keep guard files in order to restore lost but empty directories we had 
with SVN.
Note that when you start populating these directories, you can remove the 
associated .keep guard file(s)!
---
 boot/bcd/.keep  | 0
 boot/bgfx/.keep | 0
 boot/bootdata/livecd/.keep  | 0
 boot/bootdata/livecdregtest/.keep   | 0
 boot/environ/lib/bd/.keep   | 0
 boot/environ/lib/mc/.keep   | 0
 drivers/parallel/parclass/.keep | 0
 drivers/storage/fdc/flpydisk/.keep  | 0
 drivers/wdm/audio/backpln/adapters/.keep| 0
 drivers/wdm/audio/backpln/adapters/dmusic/.keep | 0
 drivers/wdm/audio/filters/swmidi/.keep  | 0
 modules/rostests/dxtest/gdi32/.keep | 0
 sdk/include/dxsdk/DShowIDL/.keep| 0
 sdk/include/reactos/elf/elf/.keep   | 0
 win32ss/printing/base/printui/.keep | 0
 win32ss/printing/drivers/tty/.keep  | 0
 win32ss/printing/drivers/unidrv/.keep   | 0
 win32ss/printing/drivers/unidrv/res/.keep   | 0
 win32ss/printing/drivers/unidrv/ui/.keep| 0
 win32ss/printing/monitors/pjlmon/.keep  | 0
 win32ss/printing/monitors/tcpmon/ui/.keep   | 0
 win32ss/printing/monitors/usbmon/.keep  | 0
 win32ss/printing/providers/inetpp/.keep | 0
 win32ss/printing/providers/win32spl/.keep   | 0
 24 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/boot/bcd/.keep b/boot/bcd/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/boot/bgfx/.keep b/boot/bgfx/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/boot/bootdata/livecd/.keep b/boot/bootdata/livecd/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/boot/bootdata/livecdregtest/.keep 
b/boot/bootdata/livecdregtest/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/boot/environ/lib/bd/.keep b/boot/environ/lib/bd/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/boot/environ/lib/mc/.keep b/boot/environ/lib/mc/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/drivers/parallel/parclass/.keep b/drivers/parallel/parclass/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/drivers/storage/fdc/flpydisk/.keep 
b/drivers/storage/fdc/flpydisk/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/drivers/wdm/audio/backpln/adapters/.keep 
b/drivers/wdm/audio/backpln/adapters/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/drivers/wdm/audio/backpln/adapters/dmusic/.keep 
b/drivers/wdm/audio/backpln/adapters/dmusic/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/drivers/wdm/audio/filters/swmidi/.keep 
b/drivers/wdm/audio/filters/swmidi/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/modules/rostests/dxtest/gdi32/.keep 
b/modules/rostests/dxtest/gdi32/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/sdk/include/dxsdk/DShowIDL/.keep b/sdk/include/dxsdk/DShowIDL/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/sdk/include/reactos/elf/elf/.keep 
b/sdk/include/reactos/elf/elf/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/win32ss/printing/base/printui/.keep 
b/win32ss/printing/base/printui/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/win32ss/printing/drivers/tty/.keep 
b/win32ss/printing/drivers/tty/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/win32ss/printing/drivers/unidrv/.keep 
b/win32ss/printing/drivers/unidrv/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/win32ss/printing/drivers/unidrv/res/.keep 
b/win32ss/printing/drivers/unidrv/res/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/win32ss/printing/drivers/unidrv/ui/.keep 
b/win32ss/printing/drivers/unidrv/ui/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/win32ss/printing/monitors/pjlmon/.keep 
b/win32ss/printing/monitors/pjlmon/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/win32ss/printing/monitors/tcpmon/ui/.keep 
b/win32ss/printing/monitors/tcpmon/ui/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/win32ss/printing/monitors/usbmon/.keep 
b/win32ss/printing/monitors/usbmon/.keep
new file mode 100644
index 00..e69de29bb2
diff --git a/win32ss/printing/providers/inetpp/.keep 
b/win32ss/printing/providers/inetpp/.keep
new file 

[ros-diffs] [reactos] 01/03: Remove unwanted .gitignore files.

2017-10-04 Thread Hermès Bélusca-Maïto
This is an automated email from the git hooks/post-receive script.

www-data pushed a commit to branch master
in repository reactos.

View the commit online:
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=221ed4cefe1f3581281854510acced13da2c100b

commit 221ed4cefe1f3581281854510acced13da2c100b
Author: Hermès Bélusca-Maïto 
AuthorDate: Wed Oct 4 01:39:34 2017 +0200

Remove unwanted .gitignore files.
---
 base/applications/cacls/lang/.gitignore   | 0
 base/applications/calc/lang/.gitignore| 0
 base/applications/cmdutils/.gitignore | 0
 base/setup/.gitignore | 0
 base/shell/.gitignore | 0
 base/system/.gitignore| 0
 boot/bcd/.gitignore   | 0
 boot/bgfx/.gitignore  | 0
 boot/environ/lib/arch/.gitignore  | 0
 boot/environ/lib/bd/.gitignore| 0
 boot/environ/lib/firmware/.gitignore  | 0
 boot/environ/lib/io/.gitignore| 0
 boot/environ/lib/mc/.gitignore| 0
 boot/environ/lib/platform/.gitignore  | 0
 dll/3rdparty/.gitignore   | 0
 dll/win32/.gitignore  | 0
 dll/win32/odbccp32/.gitignore | 0
 dll/win32/powrprof/.gitignore | 0
 drivers/ksfilter/swenum/.gitignore| 0
 drivers/parallel/parclass/.gitignore  | 0
 drivers/parallel/parport/.gitignore   | 0
 drivers/storage/classpnp/.gitignore   | 0
 drivers/storage/fdc/fdc/.gitignore| 0
 drivers/storage/fdc/flpydisk/.gitignore   | 0
 drivers/wdm/audio/backpln/adapters/dmusic/.gitignore  | 0
 drivers/wdm/audio/filters/kmixer/.gitignore   | 0
 drivers/wdm/audio/filters/splitter/.gitignore | 0
 drivers/wdm/audio/filters/swmidi/.gitignore   | 0
 drivers/wdm/audio/sysaudio/.gitignore | 0
 modules/rosapps/applications/winfile/resources/.gitignore | 0
 modules/rostests/.gitignore   | 0
 modules/rostests/winetests/GUI/res/.gitignore | 0
 ntoskrnl/mm/ARM3/.gitignore   | 0
 ntoskrnl/mm/ARM3/arm/.gitignore   | 0
 ntoskrnl/mm/ARM3/i386/.gitignore  | 0
 subsystems/.gitignore | 0
 subsystems/mvdm/dos/.gitignore| 0
 subsystems/mvdm/wow16/.gitignore  | 0
 38 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/base/applications/cacls/lang/.gitignore 
b/base/applications/cacls/lang/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/base/applications/calc/lang/.gitignore 
b/base/applications/calc/lang/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/base/applications/cmdutils/.gitignore 
b/base/applications/cmdutils/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/base/setup/.gitignore b/base/setup/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/base/shell/.gitignore b/base/shell/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/base/system/.gitignore b/base/system/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/boot/bcd/.gitignore b/boot/bcd/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/boot/bgfx/.gitignore b/boot/bgfx/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/boot/environ/lib/arch/.gitignore b/boot/environ/lib/arch/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/boot/environ/lib/bd/.gitignore b/boot/environ/lib/bd/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/boot/environ/lib/firmware/.gitignore 
b/boot/environ/lib/firmware/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/boot/environ/lib/io/.gitignore b/boot/environ/lib/io/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/boot/environ/lib/mc/.gitignore b/boot/environ/lib/mc/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/boot/environ/lib/platform/.gitignore 
b/boot/environ/lib/platform/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/dll/3rdparty/.gitignore b/dll/3rdparty/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/dll/win32/.gitignore b/dll/win32/.gitignore
deleted file mode 100644
index e69de29bb2..00
diff --git a/dll/win32/odbccp32/.gitignore 

[ros-diffs] [reactos] 01/01: [NTOBJSHEX] Fix typo. Patch by Sergei Abramov. CORE-13863

2017-10-04 Thread Sergei Abramov
This is an automated email from the git hooks/post-receive script.

www-data pushed a commit to branch master
in repository reactos.

View the commit online:
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b4f0a71f902d893e8751e7086f4ae27e323e0f2d

commit b4f0a71f902d893e8751e7086f4ae27e323e0f2d
Author: Sergei Abramov 
AuthorDate: Tue Oct 3 12:35:31 2017 +0200

[NTOBJSHEX] Fix typo.
Patch by Sergei Abramov.
CORE-13863
---
 dll/shellext/ntobjshex/foldercommon.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dll/shellext/ntobjshex/foldercommon.h 
b/dll/shellext/ntobjshex/foldercommon.h
index 8f9653c089..ce015b37b6 100644
--- a/dll/shellext/ntobjshex/foldercommon.h
+++ b/dll/shellext/ntobjshex/foldercommon.h
@@ -270,7 +270,7 @@ public:
 bool isEmpty1 = (rest1->mkid.cb == 0);
 bool isEmpty2 = (rest2->mkid.cb == 0);
 
-if (isEmpty1 || isEmpty1)
+if (isEmpty1 || isEmpty2)
 return MAKE_COMPARE_HRESULT(isEmpty2 - isEmpty1);
 
 LPCITEMIDLIST first1 = ILCloneFirst(pidl1);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.