# HG changeset patch # User Kenichi Handa # Date 896759658 0 # Node ID 4786b00d2973490076683b7722be18390716fa31 # Parent 874f007a7d9c23641c8570e913f601752f17bf54 (detect_coding_mask): Initilize local variable C. diff -r 874f007a7d9c -r 4786b00d2973 src/coding.c --- a/src/coding.c Mon Jun 01 21:49:43 1998 +0000 +++ b/src/coding.c Tue Jun 02 03:54:18 1998 +0000 @@ -3206,6 +3206,7 @@ /* We found nothing other than ASCII. There's nothing to do. */ return 0; + c = *src; /* The text seems to be encoded in some multilingual coding system. Now, try to find in which coding system the text is encoded. */ if (c < 0x80)