comparison src/os/win32/ngx_files.c @ 5785:fbdab7f38fd6

Style: use ngx_free() instead of free().
author Tatsuhiko Kubo <cubicdaiya@gmail.com>
date Sun, 03 Aug 2014 03:27:39 +0900
parents a680bf4dddd5
children 577628e6b6a6
comparison
equal deleted inserted replaced
5784:f87afb46ccd2 5785:fbdab7f38fd6
862 } 862 }
863 863
864 n = ngx_utf8_decode(&p, 4); 864 n = ngx_utf8_decode(&p, 4);
865 865
866 if (n > 0x10ffff) { 866 if (n > 0x10ffff) {
867 free(utf16); 867 ngx_free(utf16);
868 ngx_set_errno(NGX_EILSEQ); 868 ngx_set_errno(NGX_EILSEQ);
869 return NULL; 869 return NULL;
870 } 870 }
871 871
872 if (n > 0xffff) { 872 if (n > 0xffff) {