Changeset 46178 in vbox
- Timestamp:
- May 20, 2013 9:29:28 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/net/netaddrstr.cpp
r45122 r46178 2 2 /** @file 3 3 * IPRT - Network Address String Handling. 4 * 5 * @remarks Don't add new functionality to this file, it goes into netaddrstr2.cpp 6 * or some other suitable file (legal reasons + code not up to oracle 7 * quality standards and requires rewrite from scratch). 4 8 */ 5 9 … … 203 207 * that no security checks are done at the moment. This can change. 204 208 * 205 * @returns iprt sstatus code. 209 * @returns iprt sstatus code, yeah, right... This function most certainly DOES 210 * NOT RETURN ANY IPRT STATUS CODES. It's also a unreadable mess. 206 211 * @param pszAddress The strin that holds the IPv6 address 207 212 * @param addressLength The length of pszAddress … … 1148 1153 int rc; 1149 1154 int rc2; 1150 int returnValue ;1155 int returnValue = VERR_NOT_SUPPORTED; /* gcc want's this initialized, I understand its confusion. */ 1151 1156 1152 1157 char *p = NULL, *pl = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.