Changeset 29147 in vbox for trunk/src/VBox/Additions
- Timestamp:
- May 6, 2010 12:19:54 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/solaris/SharedFolders/vboxfs_prov.c
r29074 r29147 326 326 SHFLSTRING *str; 327 327 int size; 328 sfp_file_t *newfp;329 328 330 329 /* … … 633 632 sfp_file_t *fp; 634 633 void *buff_start = NULL; 635 char **curr_b;636 char *buff_end;637 634 size_t buff_size; 638 635 static char infobuff[2 * MAXNAMELEN]; /* not on stack!! */ … … 680 677 numbytes = sizeof (infobuff); 681 678 error = vboxCallDirInfo(&vbox_client, &fp->map, fp->handle, 682 mask_str, SHFL_LIST_RETURN_ONE, cnt, &numbytes, info,679 mask_str, SHFL_LIST_RETURN_ONE, 0, &numbytes, info, 683 680 &justone); 684 681 if (error == VERR_NO_MORE_FILES) { 685 682 break; 686 683 } 687 if (error == VERR_NO_TRANSLATION) {684 else if (error == VERR_NO_TRANSLATION) { 688 685 continue; /* ?? just skip this one */ 689 686 } 690 if (error != VINF_SUCCESS || justone != 1) {687 else if (error != VINF_SUCCESS || justone != 1) { 691 688 error = EINVAL; 692 689 goto done;
Note:
See TracChangeset
for help on using the changeset viewer.