commit | aec4d3a28128534078da7cb2cbcc6ba85c0cd7f0 | [log] [tgz] |
---|---|---|
author | Linux Build Service Account <lnxbuild@localhost> | Tue Sep 22 11:11:07 2015 -0700 |
committer | Gerrit - the friendly Code Review server <code-review@localhost> | Tue Sep 22 11:11:07 2015 -0700 |
tree | 77f4738bbd37951f6e057f150e94ea6fce977210 | |
parent | 6673fc3a4d7560162dadf1859d72ce12d67ecd47 [diff] | |
parent | 9331f6e7526d907bb8324c4805cb113a4f4f9d81 [diff] |
Merge "IPACM: Fix a check of mmap call"
diff --git a/ipanat/src/ipa_nat_drvi.c b/ipanat/src/ipa_nat_drvi.c index 8ba2bdb..cfda3e3 100644 --- a/ipanat/src/ipa_nat_drvi.c +++ b/ipanat/src/ipa_nat_drvi.c
@@ -823,7 +823,7 @@ prot, flags, fd, offset); #endif - if (NULL == ipv4_rules_addr) { + if (MAP_FAILED == ipv4_rules_addr) { perror("unable to mmap the memory\n"); return -EINVAL; }