|
Description
|
Peter Dennis wrote:
In the meta_med.c (at line number:1117)
1117 save_medd = &medd;
The use of the save_medd may not be correct as it will always
point at the last thing put into medd which may not the desired
value (for example if you have nodes 1,2,3 and 1 has the greatest
mediator count then medd initially will point at 1 and then as
the loop progresses will point at 3 (that is medd gets overwritten
each time).And so you may actually need to do a bcopy() or memcpy()
of the medd.
|