Skip to content

Commit

Permalink
https://github.com/danieleteti/delphimvcframework/issues/386
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleteti committed May 28, 2020
1 parent 516101e commit ad23c85
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,7 @@ end;
### Bug Fixes in 3.2.0-boron

- Fixed! [issue38](https://github.com/danieleteti/delphimvcframework/issues/38)
- Fixed! [issue140](https://github.com/danieleteti/delphimvcframework/issues/140)
- Fixed! [issue184](https://github.com/danieleteti/delphimvcframework/issues/184)
- Fixed! [issue278](https://github.com/danieleteti/delphimvcframework/issues/278)
- Fixed! [issue164](https://github.com/danieleteti/delphimvcframework/issues/164)
Expand Down Expand Up @@ -679,6 +680,7 @@ end;
- Fixed! [issue366](https://github.com/danieleteti/delphimvcframework/issues/366)
- Fixed! [issue376](https://github.com/danieleteti/delphimvcframework/issues/376) (Thanks to [João Antônio Duarte](https://github.com/joaoduarte19))
- Fixed! [issue379](https://github.com/danieleteti/delphimvcframework/issues/379) (Thanks to [João Antônio Duarte](https://github.com/joaoduarte19) and [Maincosi](https://github.com/maiconsi) for their work)
- Fixed! [issue386](https://github.com/danieleteti/delphimvcframework/issues/386) (Thanks to [Rafael Dipold](https://github.com/dipold))
- Fixed! [issue388](https://github.com/danieleteti/delphimvcframework/issues/388)
- Fixed! Has been patched a serious security bug affecting deployment configurations which uses internal WebServer to serve static files (do not affect all Apache, IIS or proxied deployments). Thanks to **Stephan Munz** to have discovered it. *Update to dmvcframework-3.2-RC5+ is required for all such kind of deployments.*

Expand Down
5 changes: 4 additions & 1 deletion sources/MVCFramework.Commons.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,10 @@ procedure TMVCStreamHelper.WriteUTF8(const AString: string);
UFTStr: UTF8String;
begin
UFTStr := UTF8String(AString);
Self.WriteBuffer(UFTStr[low(UFTStr)], Length(UFTStr));
if UFTStr <> '' then
begin
Self.WriteBuffer(UFTStr[low(UFTStr)], Length(UFTStr));
end;
end;

{ TMVCDecorator }
Expand Down

0 comments on commit ad23c85

Please sign in to comment.