~britco/nginx/nginx

« back to all changes in this revision

Viewing changes to src/http/modules/ngx_http_mp4_module.c

  • Committer: Package Import Robot
  • Author(s): Cyril Lavier, Cyril Lavier, Kartik Mistry
  • Date: 2012-03-18 09:31:19 UTC
  • mfrom: (4.2.46 sid)
  • Revision ID: package-import@ubuntu.com-20120318093119-vebmqxwdkfk52yjr
Tags: 1.1.17-2
[Cyril Lavier]
* debian/control:
  + Added build dependency to dpkg-dev (>= 1.15.7). (Closes: #664212)
* debian/patches/perl-use-dpkg-buildflags.patch:
  + Added patch to harden flags for perl module (Thanks to Simon Ruderich
    for the patch). (Closes: #664090)

[Kartik Mistry]
* Set urgency due to fix for security and RC bugs with 1.17.1-1 upload.

Show diffs side-by-side

added added

removed removed

Lines of Context:
441
441
    of.errors = clcf->open_file_cache_errors;
442
442
    of.events = clcf->open_file_cache_events;
443
443
 
 
444
    if (ngx_http_set_disable_symlinks(r, clcf, &path, &of) != NGX_OK) {
 
445
        return NGX_HTTP_INTERNAL_SERVER_ERROR;
 
446
    }
 
447
 
444
448
    if (ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool)
445
449
        != NGX_OK)
446
450
    {
458
462
            break;
459
463
 
460
464
        case NGX_EACCES:
 
465
#if (NGX_HAVE_OPENAT)
 
466
        case NGX_EMLINK:
 
467
        case NGX_ELOOP:
 
468
#endif
461
469
 
462
470
            level = NGX_LOG_ERR;
463
471
            rc = NGX_HTTP_FORBIDDEN;