The update to 2.2.20 seems to have broken video streaming that I was previously doing just fine.
The security update specifically mentions the range request:
SECURITY: CVE-2011-3192 (cve.mitre.org) core: Fix handling of byte-range requests to use less memory, to avoid denial of service. If the sum of all ranges in a request is larger than the original file, ignore the ranges and send the complete file. PR 51714. [Stefan Fritsch, Jim Jagielski, Ruediger Pluem, Eric Covener]
But as far as I can tell, my request is not larger than the original file, yet watching ngrep and comparing 2.2.19 and 2.2.20, apache is clearly ignoring the range request (see attached files to compare the ngrep output). In both tests, I played the file via dolphin browser on my phone and then attempted to seek to ~1/2 way through the file, then tried to seek to near the end of the file. With Apache 2.2.19, it works fine, but with 2.2.20 the seek doesn't happen for a while (time it takes to xfer the contents of the file sequentially to the requested seek point) and in the ngrep there is no indication of a range request processed by apache (nor is there an update to the apache access log which I see with 2.2.19).
I don't know if this is the INTENDED behavior or if their update is broken somehow, but the end result is the same - seeking in a video playing over http no longer works well, since the client side basically has to wait until the data is transferred up to (sequentially) the requested seek point.

In the 2.2.19 ngrep, the seek is denoted by this request:
GET /video/tv/test.avi HTTP/1.1..User-Agent: Lavf52.106.0..Accept: */*..Range: bytes=364419190-..Connection: close..Host: int.pflog.net....
and
HTTP/1.1 206 Partial Content..Date: Mon, 12 Sep 2011 03:33:53 GMT..Server: Apache..Last-Modified: Mon, 12 Sep 2011 03:33:31 GMT..ETag: "309-15e5733e-4acb630e238c0"..Accept-Ranges: bytes..Content-Length: 2939592..Content-Range: bytes 364419190-367358781/367358782..Connection: close..Content-Type: video/x-msvideo....
So unless apache is summing all requests instead of examining individual requests, I don't understand why this should not be working, based on their release notes. I have not yet looked at the code yet, but this definitely seems to be broken.
Can anyone else confirm? I've tested with VLC in windows 7, windows media player in win7, rockplayer on android as well as moboplayer on android. All have the same problematic behavior with apache 2.2.20 serving the movies.