Author: akhaldi
Date: Sun Jun 2 19:12:22 2013
New Revision: 59153
URL: http://svn.reactos.org/svn/reactos?rev=59153&view=rev
Log:
[NEWCC]
* Lock address space while deleting the segment and then unlock it. Brought to you by Nikolay Borisov.
CORE-7220 #resolve
Modified:
trunk/reactos/ntoskrnl/cache/section/data.c
Modified: trunk/reactos/ntoskrnl/cache/section/data.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/cache/section/dat…
==============================================================================
--- trunk/reactos/ntoskrnl/cache/section/data.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/cache/section/data.c [iso-8859-1] Sun Jun 2 19:12:22 2013
@@ -819,7 +819,11 @@
MmGetAddressSpaceOwner(AddressSpace),
MemoryArea->StartingAddress);
+ MmLockAddressSpace(AddressSpace);
+
MmFreeMemoryArea(AddressSpace, MemoryArea, MmFreeCacheSectionPage, Context);
+
+ MmUnlockAddressSpace(AddressSpace);
MmUnlockSectionSegment(Segment);
Author: akhaldi
Date: Sun Jun 2 19:08:33 2013
New Revision: 59152
URL: http://svn.reactos.org/svn/reactos?rev=59152&view=rev
Log:
[KSPROXY]
* Exclude from build. We don't need it at the moment.
Modified:
trunk/reactos/dll/directx/CMakeLists.txt
Modified: trunk/reactos/dll/directx/CMakeLists.txt
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/directx/CMakeLists.txt…
==============================================================================
--- trunk/reactos/dll/directx/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/dll/directx/CMakeLists.txt [iso-8859-1] Sun Jun 2 19:08:33 2013
@@ -14,9 +14,7 @@
add_subdirectory(dsound)
#add_subdirectory(dsound_new) #disabled in trunk
add_subdirectory(dxdiagn)
-if(NOT MSVC)
- add_subdirectory(ksproxy) #FIXME: fix msvc build
-endif()
+#add_subdirectory(ksproxy) We don't need it at the moment
add_subdirectory(ksuser)
add_subdirectory(msdmo)
#add_subdirectory(msdvbnp) #disabled in trunk
Author: hbelusca
Date: Sun Jun 2 18:44:50 2013
New Revision: 59150
URL: http://svn.reactos.org/svn/reactos?rev=59150&view=rev
Log:
"bugzilla" --> Jira
Modified:
trunk/reactos/INSTALL
trunk/reactos/base/shell/cmd/readme.txt
Modified: trunk/reactos/INSTALL
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/INSTALL?rev=59150&r1=59149…
==============================================================================
--- trunk/reactos/INSTALL [iso-8859-1] (original)
+++ trunk/reactos/INSTALL [iso-8859-1] Sun Jun 2 18:44:50 2013
@@ -72,7 +72,7 @@
If you run into problems or have suggestions for making ReactOS better, please
visit the address below. Mailing lists are available for a variety of topics,
-bugs should be submitted to bugzilla and general chat takes place in the forums,
+bugs should be submitted to JIRA and general chat takes place in the forums,
or #reactos on freenode
http://www.reactos.org/
Modified: trunk/reactos/base/shell/cmd/readme.txt
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/readme.txt?…
==============================================================================
--- trunk/reactos/base/shell/cmd/readme.txt [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/readme.txt [iso-8859-1] Sun Jun 2 18:44:50 2013
@@ -51,5 +51,5 @@
Bugs
~~~~
There is still many bugs ;)
-Please report bugs to ReactOS team <ros-dev(a)reactos.org> or to bugzilla at www.reactos.org
+Please report bugs to ReactOS team <ros-dev(a)reactos.org> or to JIRA at www.reactos.org
Author: ekohl
Date: Sun Jun 2 15:33:40 2013
New Revision: 59145
URL: http://svn.reactos.org/svn/reactos?rev=59145&view=rev
Log:
[SAMSRV]
SampDeleteAccountDbObject: Fix the check of a returned status value. The old check caused a failure even though the returned value meant success.
Modified:
trunk/reactos/dll/win32/samsrv/database.c
Modified: trunk/reactos/dll/win32/samsrv/database.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/samsrv/database.…
==============================================================================
--- trunk/reactos/dll/win32/samsrv/database.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/samsrv/database.c [iso-8859-1] Sun Jun 2 15:33:40 2013
@@ -419,9 +419,9 @@
NULL,
NULL,
&Length);
- if (Status != STATUS_BUFFER_OVERFLOW)
- {
- TRACE("Status 0x%08lx\n", Status);
+ if (!NT_SUCCESS(Status) && Status != STATUS_BUFFER_OVERFLOW)
+ {
+ TRACE("SampGetObjectAttribute failed (Status 0x%08lx)\n", Status);
goto done;
}