Home | History | Annotate | Download | only in bdist_wininst

Lines Matching full:err_buf

864         char *err_buf;
870 err_buf = malloc(prefix_len + err_buf_size + 1);
871 if (err_buf) {
873 strcpy(err_buf, prefix);
875 ReadFile(redirected, err_buf+prefix_len, err_buf_size, &n, NULL);
876 err_buf[prefix_len+n] = '\0';
877 set_failure_reason(err_buf);
878 free(err_buf);