Jump to content
  • 0

Src Bug ?


danielps

Question


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  174
  • Reputation:   18
  • Joined:  10/09/14
  • Last Seen:  

Hi guys,

I created a instance npc... everything working good, no errors on mapserver... but sometimes idk why, i get the following src error:

[Error]: Memory manager: freed-data is changed. (freed in c:\users\pichau\desktop\moba\src\map\map.cpp line 241)

If I log in and stay stopped in prontera, this error don't happen...

When i'm on my instance, some times this error are shown and map-server restart himself....

I don't think it's the script, cause this error is happening in different situations and times in the instace...

I looked my map.cpp and i didn't changed anything in this line 241 of the error....

 

my map.cpp:

int map_freeblock_unlock (void)
{
    if ((--block_free_lock) == 0) {
        int i;
        for (i = 0; i < block_free_count; i++)
        {
            aFree(block_free);
            block_free = NULL;
        }
        block_free_count = 0;
    } else if (block_free_lock < 0) {
        ShowError("map_freeblock_unlock: lock count < 0 !\n");
        block_free_lock = 0;
    }

    return block_free_lock;
}
line 241 ->  aFree(block_free);

 

Please guys any help?

Edited by Emistry
Please use codebox
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...