mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 17:05:45 +00:00
-allocate the buffer for the NamedPipeReader on Linux too
-use linux path as default in txtmode.cfg svn path=/trunk/; revision=28881
This commit is contained in:
parent
7e1ef16736
commit
7cc946b793
2 changed files with 4 additions and 2 deletions
|
@ -90,6 +90,8 @@ namespace System_
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
cout << "NamedPipeReader::openPipe> successfully opened pipe" << endl;
|
cout << "NamedPipeReader::openPipe> successfully opened pipe" << endl;
|
||||||
|
m_BufferLength = 100;
|
||||||
|
m_Buffer = (char*)malloc(sizeof(char) * m_BufferLength);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -10,8 +10,8 @@ ROS_EMU_TYPE=qemu
|
||||||
;
|
;
|
||||||
; This variable sets the path to the emulator
|
; This variable sets the path to the emulator
|
||||||
;
|
;
|
||||||
ROS_EMU_PATH=E:\reactos\qemu\qemu.exe
|
;ROS_EMU_PATH=E:\reactos\qemu\qemu.exe
|
||||||
;ROS_EMU_PATH=/usr/bin/qemu
|
ROS_EMU_PATH=/usr/bin/qemu
|
||||||
|
|
||||||
; ROS_HDD_IMAGE
|
; ROS_HDD_IMAGE
|
||||||
;
|
;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue