зеркало из https://github.com/microsoft/git.git
Merge branch 'pb/maint-1.6.2-userdiff-fix' into maint
* pb/maint-1.6.2-userdiff-fix: upload-archive: fix infinite loop on Cygwin avoid exponential regex match for java and objc function names
This commit is contained in:
Коммит
037e9d5b15
|
@ -80,16 +80,17 @@ static void error_clnt(const char *fmt, ...)
|
||||||
die("sent error to the client: %s", buf);
|
die("sent error to the client: %s", buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void process_input(int child_fd, int band)
|
static ssize_t process_input(int child_fd, int band)
|
||||||
{
|
{
|
||||||
char buf[16384];
|
char buf[16384];
|
||||||
ssize_t sz = read(child_fd, buf, sizeof(buf));
|
ssize_t sz = read(child_fd, buf, sizeof(buf));
|
||||||
if (sz < 0) {
|
if (sz < 0) {
|
||||||
if (errno != EAGAIN && errno != EINTR)
|
if (errno != EAGAIN && errno != EINTR)
|
||||||
error_clnt("read error: %s\n", strerror(errno));
|
error_clnt("read error: %s\n", strerror(errno));
|
||||||
return;
|
return sz;
|
||||||
}
|
}
|
||||||
send_sideband(1, band, buf, sz, LARGE_PACKET_MAX);
|
send_sideband(1, band, buf, sz, LARGE_PACKET_MAX);
|
||||||
|
return sz;
|
||||||
}
|
}
|
||||||
|
|
||||||
int cmd_upload_archive(int argc, const char **argv, const char *prefix)
|
int cmd_upload_archive(int argc, const char **argv, const char *prefix)
|
||||||
|
@ -131,6 +132,7 @@ int cmd_upload_archive(int argc, const char **argv, const char *prefix)
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
struct pollfd pfd[2];
|
struct pollfd pfd[2];
|
||||||
|
ssize_t processed[2] = { 0, 0 };
|
||||||
int status;
|
int status;
|
||||||
|
|
||||||
pfd[0].fd = fd1[0];
|
pfd[0].fd = fd1[0];
|
||||||
|
@ -147,12 +149,12 @@ int cmd_upload_archive(int argc, const char **argv, const char *prefix)
|
||||||
}
|
}
|
||||||
if (pfd[0].revents & POLLIN)
|
if (pfd[0].revents & POLLIN)
|
||||||
/* Data stream ready */
|
/* Data stream ready */
|
||||||
process_input(pfd[0].fd, 1);
|
processed[0] = process_input(pfd[0].fd, 1);
|
||||||
if (pfd[1].revents & POLLIN)
|
if (pfd[1].revents & POLLIN)
|
||||||
/* Status stream ready */
|
/* Status stream ready */
|
||||||
process_input(pfd[1].fd, 2);
|
processed[1] = process_input(pfd[1].fd, 2);
|
||||||
/* Always finish to read data when available */
|
/* Always finish to read data when available */
|
||||||
if ((pfd[0].revents | pfd[1].revents) & POLLIN)
|
if (processed[0] || processed[1])
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (waitpid(writer, &status, 0) < 0)
|
if (waitpid(writer, &status, 0) < 0)
|
||||||
|
|
|
@ -13,7 +13,8 @@ PATTERNS("html", "^[ \t]*(<[Hh][1-6][ \t].*>.*)$",
|
||||||
"[^<>= \t]+|[^[:space:]]|[\x80-\xff]+"),
|
"[^<>= \t]+|[^[:space:]]|[\x80-\xff]+"),
|
||||||
PATTERNS("java",
|
PATTERNS("java",
|
||||||
"!^[ \t]*(catch|do|for|if|instanceof|new|return|switch|throw|while)\n"
|
"!^[ \t]*(catch|do|for|if|instanceof|new|return|switch|throw|while)\n"
|
||||||
"^[ \t]*(([ \t]*[A-Za-z_][A-Za-z_0-9]*){2,}[ \t]*\\([^;]*)$",
|
"^[ \t]*(([A-Za-z_][A-Za-z_0-9]*[ \t]+)+[A-Za-z_][A-Za-z_0-9]*[ \t]*\\([^;]*)$",
|
||||||
|
/* -- */
|
||||||
"[a-zA-Z_][a-zA-Z0-9_]*"
|
"[a-zA-Z_][a-zA-Z0-9_]*"
|
||||||
"|[-+0-9.e]+[fFlL]?|0[xXbB]?[0-9a-fA-F]+[lL]?"
|
"|[-+0-9.e]+[fFlL]?|0[xXbB]?[0-9a-fA-F]+[lL]?"
|
||||||
"|[-+*/<>%&^|=!]="
|
"|[-+*/<>%&^|=!]="
|
||||||
|
@ -25,7 +26,7 @@ PATTERNS("objc",
|
||||||
/* Objective-C methods */
|
/* Objective-C methods */
|
||||||
"^[ \t]*([-+][ \t]*\\([ \t]*[A-Za-z_][A-Za-z_0-9* \t]*\\)[ \t]*[A-Za-z_].*)$\n"
|
"^[ \t]*([-+][ \t]*\\([ \t]*[A-Za-z_][A-Za-z_0-9* \t]*\\)[ \t]*[A-Za-z_].*)$\n"
|
||||||
/* C functions */
|
/* C functions */
|
||||||
"^[ \t]*(([ \t]*[A-Za-z_][A-Za-z_0-9]*){2,}[ \t]*\\([^;]*)$\n"
|
"^[ \t]*(([A-Za-z_][A-Za-z_0-9]*[ \t]+)+[A-Za-z_][A-Za-z_0-9]*[ \t]*\\([^;]*)$\n"
|
||||||
/* Objective-C class/protocol definitions */
|
/* Objective-C class/protocol definitions */
|
||||||
"^(@(implementation|interface|protocol)[ \t].*)$",
|
"^(@(implementation|interface|protocol)[ \t].*)$",
|
||||||
/* -- */
|
/* -- */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче