Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: MbedFileServer_1768MiniDK2 RedWireBridge IssueDebug_gcc MiMicRemoteMCU-for-Mbed ... more
Revision 65:38049208ea29, committed 2013-11-03
- Comitter:
- nyatla
- Date:
- Sun Nov 03 11:18:49 2013 +0000
- Parent:
- 64:258e84040262
- Child:
- 67:0a24ad966876
- Commit message:
- fix memory leak Net::stop; maybe corrected.
Changed in this revision
| mbed/Net.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/mbed/Net.cpp Wed Oct 23 04:49:08 2013 +0000
+++ b/mbed/Net.cpp Sun Nov 03 11:18:49 2013 +0000
@@ -67,6 +67,11 @@
free(this->_mdns);
this->_mdns=NULL;
}
+ if(this->_upnp!=NULL){
+ NyLPC_cUPnP_finalize(this->_upnp);
+ free(this->_upnp);
+ this->_upnp=NULL;
+ }
}
}
\ No newline at end of file
MiMic Webservice library