Commit 46594b8e authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

dbghelp: Make pdb_load_stream_name_table a void function.

parent 1986dabc
...@@ -2239,7 +2239,7 @@ static void pdb_free_file(struct pdb_file_info* pdb_file) ...@@ -2239,7 +2239,7 @@ static void pdb_free_file(struct pdb_file_info* pdb_file)
HeapFree(GetProcessHeap(), 0, pdb_file->stream_dict); HeapFree(GetProcessHeap(), 0, pdb_file->stream_dict);
} }
static BOOL pdb_load_stream_name_table(struct pdb_file_info* pdb_file, const char* str, unsigned cb) static void pdb_load_stream_name_table(struct pdb_file_info* pdb_file, const char* str, unsigned cb)
{ {
DWORD* pdw; DWORD* pdw;
DWORD* ok_bits; DWORD* ok_bits;
...@@ -2252,7 +2252,7 @@ static BOOL pdb_load_stream_name_table(struct pdb_file_info* pdb_file, const cha ...@@ -2252,7 +2252,7 @@ static BOOL pdb_load_stream_name_table(struct pdb_file_info* pdb_file, const cha
count = *pdw++; count = *pdw++;
pdb_file->stream_dict = HeapAlloc(GetProcessHeap(), 0, (numok + 1) * sizeof(struct pdb_stream_name) + cb); pdb_file->stream_dict = HeapAlloc(GetProcessHeap(), 0, (numok + 1) * sizeof(struct pdb_stream_name) + cb);
if (!pdb_file->stream_dict) return FALSE; if (!pdb_file->stream_dict) return;
cpstr = (char*)(pdb_file->stream_dict + numok + 1); cpstr = (char*)(pdb_file->stream_dict + numok + 1);
memcpy(cpstr, str, cb); memcpy(cpstr, str, cb);
...@@ -2262,7 +2262,7 @@ static BOOL pdb_load_stream_name_table(struct pdb_file_info* pdb_file, const cha ...@@ -2262,7 +2262,7 @@ static BOOL pdb_load_stream_name_table(struct pdb_file_info* pdb_file, const cha
if (*pdw++ != 0) if (*pdw++ != 0)
{ {
FIXME("unexpected value\n"); FIXME("unexpected value\n");
return -1; return;
} }
for (i = j = 0; i < count; i++) for (i = j = 0; i < count; i++)
...@@ -2278,7 +2278,6 @@ static BOOL pdb_load_stream_name_table(struct pdb_file_info* pdb_file, const cha ...@@ -2278,7 +2278,6 @@ static BOOL pdb_load_stream_name_table(struct pdb_file_info* pdb_file, const cha
/* add sentinel */ /* add sentinel */
pdb_file->stream_dict[numok].name = NULL; pdb_file->stream_dict[numok].name = NULL;
pdb_file->fpoext_stream = -1; pdb_file->fpoext_stream = -1;
return j == numok && i == count;
} }
static unsigned pdb_get_stream_by_name(const struct pdb_file_info* pdb_file, const char* name) static unsigned pdb_get_stream_by_name(const struct pdb_file_info* pdb_file, const char* name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment