Commit 93721a93 authored by malenov's avatar malenov
Browse files

update of binaries (fixed Include_Header())

prevent C4706 warning when compiling in Windows
parent 5aa9a2b3
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -1063,20 +1063,19 @@ static unsigned long malloc_hash(const char* func_name, int func_lineno, char* s
{
    unsigned long hash = 5381;
    const char* ptr_str;
    int c;

    ptr_str = func_name;
    while (c = *ptr_str++)
    while ( ptr_str != NULL && *ptr_str != '\0' )
    {
        hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
        hash = ((hash << 5) + hash) + *ptr_str++; /* hash * 33 + char */
    }

    hash = ((hash << 5) + hash) + func_lineno; /* hash * 33 + func_lineno */

    ptr_str = size_str;
    while (c = *ptr_str++)
    while ( ptr_str != NULL && *ptr_str != '\0' )
    {
        hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
        hash = ( ( hash << 5 ) + hash ) + *ptr_str++; /* hash * 33 + char */
    }

    return hash;
(199 KiB)

File changed.

No diff preview for this file type.

(131 B)

File changed.

No diff preview for this file type.