Home | History | Annotate | Download | only in bdist_wininst

Lines Matching full:err_buf

908         char *err_buf;
914 err_buf = malloc(prefix_len + err_buf_size + 1);
915 if (err_buf) {
917 strcpy(err_buf, prefix);
919 ReadFile(redirected, err_buf+prefix_len, err_buf_size, &n, NULL);
920 err_buf[prefix_len+n] = '\0';
921 set_failure_reason(err_buf);
922 free(err_buf);