script.
[ISC-Bugs #39863]
+- Removed an extraneous expression in omapi socket callback function. Prior
+ to this change, the logic was techinically incorrect but other factors
+ ensured the outcome itself was correct. This change was made primarily
+ for code clarity.
+ [ISC-Bugs #42834]
+
Changes since 4.3.0 (bug fixes)
- Tidy up several small tickets.
* walk through the io states list, if our object is on there
* service it. if not ignore it.
*/
- for (obj = omapi_io_states.next;
- (obj != NULL) && (obj->next != NULL);
- obj = obj->next) {
+ for (obj = omapi_io_states.next; obj != NULL; obj = obj->next) {
if (obj == cbarg)
break;
}
+
if (obj == NULL) {
return(0);
}