summaryrefslogtreecommitdiff
path: root/datapath-windows/ovsext
diff options
context:
space:
mode:
Diffstat (limited to 'datapath-windows/ovsext')
-rw-r--r--datapath-windows/ovsext/IpHelper.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/datapath-windows/ovsext/IpHelper.c b/datapath-windows/ovsext/IpHelper.c
index e98dcd1bd..555351a5c 100644
--- a/datapath-windows/ovsext/IpHelper.c
+++ b/datapath-windows/ovsext/IpHelper.c
@@ -917,6 +917,7 @@ static NTSTATUS
OvsRegisterChangeNotification()
{
NTSTATUS status;
+ UINT dummy = 0;
status = NotifyIpInterfaceChange(AF_INET, OvsChangeCallbackIpInterface,
@@ -928,7 +929,8 @@ OvsRegisterChangeNotification()
return status;
}
- status = NotifyRouteChange2(AF_INET, OvsChangeCallbackIpRoute, NULL,
+ /* The CallerContext is dummy and should never be used */
+ status = NotifyRouteChange2(AF_INET, OvsChangeCallbackIpRoute, &dummy,
TRUE, &ipRouteNotificationHandle);
if (status != STATUS_SUCCESS) {
OVS_LOG_ERROR("Fail to regiter ip route change, status: %x.",