~ubuntu-branches/debian/squeeze/nginx/squeeze

« back to all changes in this revision

Viewing changes to src/mail/ngx_mail_pop3_module.c

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2009-05-31 18:38:56 UTC
  • mfrom: (1.1.10 upstream) (4.1.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20090531183856-3xhvf6wd0bw5556i
Tags: 0.7.59-1
* New upstream release, first in Debian for the 0.7 branch. Among other
  issues, it also fixes the problem with wildcard dns names used with SSL.
  (Closes: #515904)
* debian/watch: updated.
* debian/postinst: fixed a bashism. (Closes: #507913)
* debian/conf/nginx.conf: removed default_type. (Closes: #509390)
* debian/control: updated Standards-Version to 3.8.1, no changes needed.
* debian/NEWS.Debian: documented the issues with
  server_names_hash_bucket_size. (Closes: #524785)

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
        size += sizeof("SASL LOGIN PLAIN" CRLF) - 1;
184
184
    }
185
185
 
186
 
    p = ngx_palloc(cf->pool, size);
 
186
    p = ngx_pnalloc(cf->pool, size);
187
187
    if (p == NULL) {
188
188
        return NGX_CONF_ERROR;
189
189
    }
213
213
 
214
214
    size += sizeof("STLS" CRLF) - 1;
215
215
 
216
 
    p = ngx_palloc(cf->pool, size);
 
216
    p = ngx_pnalloc(cf->pool, size);
217
217
    if (p == NULL) {
218
218
        return NGX_CONF_ERROR;
219
219
    }
236
236
    }
237
237
 
238
238
 
239
 
    p = ngx_palloc(cf->pool, stls_only_size);
 
239
    p = ngx_pnalloc(cf->pool, stls_only_size);
240
240
    if (p == NULL) {
241
241
        return NGX_CONF_ERROR;
242
242
    }