mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[USETUP]: Do not append an extra NULL-terminator when updating freeldr.ini
svn path=/trunk/; revision=70558
This commit is contained in:
parent
119229c8fb
commit
6ed0a4c6b2
1 changed files with 5 additions and 6 deletions
|
@ -537,7 +537,7 @@ IniCacheLoad(
|
|||
|
||||
DPRINT("File size: %lu\n", FileLength);
|
||||
|
||||
/* Allocate file buffer */
|
||||
/* Allocate file buffer with NULL-terminator */
|
||||
FileBuffer = (CHAR*)RtlAllocateHeap(ProcessHeap,
|
||||
0,
|
||||
FileLength + 1);
|
||||
|
@ -560,7 +560,7 @@ IniCacheLoad(
|
|||
&FileOffset,
|
||||
NULL);
|
||||
|
||||
/* Append string terminator */
|
||||
/* Append NULL-terminator */
|
||||
FileBuffer[FileLength] = 0;
|
||||
|
||||
NtClose(FileHandle);
|
||||
|
@ -971,16 +971,15 @@ IniCacheSave(
|
|||
|
||||
Section = Section->Next;
|
||||
if (Section != NULL)
|
||||
BufferSize += 2; /* extra "\r\n" at end of each section */
|
||||
BufferSize += 2; /* Extra "\r\n" at end of each section */
|
||||
}
|
||||
BufferSize++; /* Null-terminator */
|
||||
|
||||
DPRINT("BufferSize: %lu\n", BufferSize);
|
||||
|
||||
/* Allocate file buffer */
|
||||
/* Allocate file buffer with NULL-terminator */
|
||||
Buffer = (CHAR*)RtlAllocateHeap(ProcessHeap,
|
||||
HEAP_ZERO_MEMORY,
|
||||
BufferSize);
|
||||
BufferSize + 1);
|
||||
if (Buffer == NULL)
|
||||
{
|
||||
DPRINT1("RtlAllocateHeap() failed\n");
|
||||
|
|
Loading…
Reference in a new issue