diff options
author | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2009-10-09 20:40:22 +0000 |
---|---|---|
committer | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2009-10-09 20:40:22 +0000 |
commit | 599f5b870c74d7d2cbd3e02d0d45bf74af76d9b6 (patch) | |
tree | cca8ac2e678e38fe22cf18306cfa18d27a9119c9 /tests/test/tcase23.pp | |
parent | 9c1d3ecf9cdbb6ab18bb8bac206c7c5bbeef1a46 (diff) | |
download | fpc-599f5b870c74d7d2cbd3e02d0d45bf74af76d9b6.tar.gz |
o patch by Michael Denisenko, resolves #14734:
* fixes memory leaks in case of string code
* replace usage of strcmp
* improved tests
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@13830 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'tests/test/tcase23.pp')
-rw-r--r-- | tests/test/tcase23.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test/tcase23.pp b/tests/test/tcase23.pp index 7e080d54eb..c86bdbe483 100644 --- a/tests/test/tcase23.pp +++ b/tests/test/tcase23.pp @@ -5,9 +5,9 @@ {$H+} var my_str: string; - my_str_wide: string; - my_str_ansi: string; - my_str_uni: string; + my_str_wide: widestring; + my_str_ansi: ansistring; + my_str_uni: unicodestring; i: integer; begin |