View | Details | Raw Unified | Return to bug 59981
Collapse All | Expand All

(-)support/logresolve.c (-2 / +9 lines)
Lines 185-192 Link Here
185
        } /* else */
185
        } /* else */
186
    } /* while */
186
    } /* while */
187
187
188
    apr_file_open_stdout(&outfile, pool);
188
    if (apr_file_open_stdout(&outfile, pool) != APR_SUCCESS) {
189
    apr_file_open_stdin(&infile, pool);
189
        apr_file_printf(errfile, "Unable to open stdout");
190
        return 1;
191
    }   
192
193
    if (apr_file_open_stdin(&infile, pool) != APR_SUCCESS) {
194
        apr_file_printf(errfile, "Unable to open stdin");
195
        return 1;
196
    }   
190
197
191
    /* Allocate two new 10k file buffers */
198
    /* Allocate two new 10k file buffers */
192
    if (   (outbuffer = apr_palloc(pool, WRITE_BUF_SIZE)) == NULL
199
    if (   (outbuffer = apr_palloc(pool, WRITE_BUF_SIZE)) == NULL

Return to bug 59981