Squashed commit of the following:
commit
70bc20ffb6bd21793d2fb4f945ef9f16619df46f
Author: Shawn Routhier <sar@isc.org>
Date: Tue Oct 20 12:18:01 2015 -0700
[rt40990] Fix a memory leak in the v6 version of the client code
he provided.
[ISC-Bugs #38396]
+- Fix a small memory leak in the DHCPv6 version of the client code.
+ This is unlikely to cause significant issues in actual use.
+ [ISC-Bugs #40990]
+
Changes since 4.3.3b1
- None
rval = ISC_FALSE;
}
+ /* clean up pointers to the strings */
+ if (sid.data != NULL)
+ data_string_forget(&sid, MDL);
+ if (cid.data != NULL)
+ data_string_forget(&cid, MDL);
+
return rval;
}