Mercurial > vim
view src/po/sjiscorr.c @ 8781:65be74c1467b v7.4.1679
commit https://github.com/vim/vim/commit/7d2a5796d39905a972e8f74af5f7b0a62e3de173
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Mar 28 22:30:50 2016 +0200
patch 7.4.1679
Problem: Coverity: copying value of v_lock without initializing it.
Solution: Init v_lock in rettv_list_alloc() and rettv_dict_alloc().
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 28 Mar 2016 22:45:07 +0200 |
parents | 226ed297307f |
children | b79453d0d01c |
line wrap: on
line source
/* * Simplistic program to correct SJIS inside strings. When a trail byte is a * backslash it needs to be doubled. * Public domain. */ #include <stdio.h> #include <string.h> int main(int argc, char **argv) { char buffer[BUFSIZ]; char *p; while (fgets(buffer, BUFSIZ, stdin) != NULL) { for (p = buffer; *p != 0; p++) { if (strncmp(p, "charset=utf-8", 13) == 0) { fputs("charset=cp932", stdout); p += 12; } else if (strncmp(p, "# Original translations", 23) == 0) { fputs("# generated from ja.po, DO NOT EDIT", stdout); while (p[1] != '\n') ++p; } else if (*(unsigned char *)p == 0x81 && p[1] == '_') { putchar('\\'); ++p; } else { if (*p & 0x80) { putchar(*p++); if (*p == '\\') putchar(*p); } putchar(*p); } } } }