-
In netsnmp_clear_callback_list(), there's a code that references memory which is already freed:
netsnmp_transport_free(list->transport);
It should be replaced with:
netsnmp_transport_free(tr);
Sorry for not making a patch for it - my time is very limited.
2009-12-22 12:43:55 UTC in net-snmp
-
Documented and added freeing code.
The freeing function should be called in shutdown_agent().
2009-12-11 08:59:54 UTC in net-snmp
-
Please let me know when the patches I'm uploading will be submitted - I already made lots of further changes, and it's becoming hard to go forward like this.
When I'm generating a patch now (with Eclipse), it has more than 250kb.
Maybe I should create a separate project for my work?.
2009-12-11 07:46:34 UTC in net-snmp
-
Patch for agent_registry.c and agent_read_config.c.
- head comments updated
- globals closed into struct,
- doxygen documentation
- changed order of functions (to merge logic blocks together)
I hope you'll forgive me putting everything into one patch (again). I have limited time, and not much experience with patches, so splitting it could be problematic for me.
2009-12-09 12:36:12 UTC in net-snmp
-
You're right, I made a leak. Thanks for fixing this.
I've been given a different task now, but in a few days I will get back to the library.
2009-11-30 07:05:20 UTC in net-snmp
-
Intermixing:
To make the agent work again after shooting it down, I need to reset static variables in ~30 files (that's just an estimation). Making one patch for one module seems logic to me.
Whitespace:
Sorry, I worked on the files outside Eclipse and then ctrl+v 'ed the content to Eclipse. In such case the IDE automatically reformats white spaces.
Tabs:
Again, it's because of Eclipse. Anyway...
2009-11-28 07:52:01 UTC in net-snmp
-
Doxygen comments + static variables placed in one struct; also, fixed freeing... lots of changes; API unchanged.
For revision 17838.
2009-11-27 10:46:19 UTC in net-snmp
-
listom made 2 file-release changes.
2009-09-22 06:43:03 UTC in ADiKtEd