Changes in uspace/lib/c/generic/net/inet.c [acdb5bac:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/net/inet.c
racdb5bac r9d58539 144 144 /* Erase if no address */ 145 145 if (!address) { 146 memset(data, 0, count);146 bzero(data, count); 147 147 return ENOENT; 148 148 } … … 181 181 } else { 182 182 /* Erase the rest of the address */ 183 memset(data + index, 0, count - index);183 bzero(data + index, count - index); 184 184 return EOK; 185 185 }
Note:
See TracChangeset
for help on using the changeset viewer.