style fix: remove tabs and trailing spaces
Igor Sysoev
14 years ago
412 | 412 |
|
413 | 413 |
if (file->count == 0) {
|
414 | 414 |
|
415 | |
if (file->fd != NGX_INVALID_FILE) {
|
416 | |
if (ngx_close_file(file->fd) == NGX_FILE_ERROR) {
|
417 | |
ngx_log_error(NGX_LOG_ALERT, pool->log, ngx_errno,
|
418 | |
ngx_close_file_n " \"%s\" failed",
|
|
415 |
if (file->fd != NGX_INVALID_FILE) {
|
|
416 |
if (ngx_close_file(file->fd) == NGX_FILE_ERROR) {
|
|
417 |
ngx_log_error(NGX_LOG_ALERT, pool->log, ngx_errno,
|
|
418 |
ngx_close_file_n " \"%s\" failed",
|
419 | 419 |
file->name);
|
420 | |
}
|
421 | |
}
|
|
420 |
}
|
|
421 |
}
|
422 | 422 |
|
423 | 423 |
ngx_free(file->name);
|
424 | 424 |
ngx_free(file);
|
201 | 201 |
ngx_queue_remove(&rn->queue);
|
202 | 202 |
|
203 | 203 |
for (ctx = rn->waiting; ctx; ctx = next) {
|
204 | |
next = ctx->next;
|
|
204 |
next = ctx->next;
|
205 | 205 |
|
206 | 206 |
if (ctx->event) {
|
207 | 207 |
ngx_resolver_free(r, ctx->event);
|