Commit 6d216964 authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

tools: Remove redundant check for request size in make_requests.

parent 05b623e7
...@@ -171,7 +171,6 @@ sub PARSE_REQUESTS() ...@@ -171,7 +171,6 @@ sub PARSE_REQUESTS()
print SERVER_PROT "};\n"; print SERVER_PROT "};\n";
print SERVER_PROT "struct ${name}_reply\n{\n"; print SERVER_PROT "struct ${name}_reply\n{\n";
print SERVER_PROT " struct reply_header __header;\n"; print SERVER_PROT " struct reply_header __header;\n";
die "request $name too large ($offset)" if ($offset > $max_req_size);
$offset = 8; $offset = 8;
$state++; $state++;
next; next;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment