オープンソース・ソフトウェアの開発とダウンロード

Subversion リポジトリの参照

Diff of /trunk/1.8.x/ccs-patch/security/ccsecurity/domain.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1721 by kumaneko, Mon Oct 20 05:56:25 2008 UTC revision 1747 by kumaneko, Fri Oct 24 04:07:03 2008 UTC
# Line 1280  static void unescape(unsigned char *dest Line 1280  static void unescape(unsigned char *dest
1280          unsigned char c;          unsigned char c;
1281          unsigned char d;          unsigned char d;
1282          unsigned char e;          unsigned char e;
1283          while ((c = *src++) != '\0') {          while (1) {
1284                    c = *src++;
1285                    if (!c)
1286                            break;
1287                  if (c != '\\') {                  if (c != '\\') {
1288                          *dest++ = c;                          *dest++ = c;
1289                          continue;                          continue;

Legend:
Removed from v.1721  
changed lines
  Added in v.1747

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26