Changeset 860 for vendor/current/source4/libcli
- Timestamp:
- May 12, 2014, 8:58:38 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source4/libcli/util/clilsa.c
r740 r860 255 255 if (names.count != 1) { 256 256 talloc_free(mem_ctx2); 257 return NT_STATUS_UNSUCCESSFUL; 257 return NT_STATUS_INVALID_NETWORK_RESPONSE; 258 } 259 if (domains == NULL) { 260 talloc_free(mem_ctx2); 261 return NT_STATUS_INVALID_NETWORK_RESPONSE; 262 } 263 if (domains->count != 1) { 264 talloc_free(mem_ctx2); 265 return NT_STATUS_INVALID_NETWORK_RESPONSE; 266 } 267 if (names.names[0].sid_index != UINT32_MAX && 268 names.names[0].sid_index >= domains->count) 269 { 270 talloc_free(mem_ctx2); 271 return NT_STATUS_INVALID_NETWORK_RESPONSE; 258 272 } 259 273 … … 316 330 if (sids.count != 1) { 317 331 talloc_free(mem_ctx2); 318 return NT_STATUS_UNSUCCESSFUL; 332 return NT_STATUS_INVALID_NETWORK_RESPONSE; 333 } 334 if (domains->count != 1) { 335 talloc_free(mem_ctx2); 336 return NT_STATUS_INVALID_NETWORK_RESPONSE; 319 337 } 320 338
Note:
See TracChangeset
for help on using the changeset viewer.