summaryrefslogtreecommitdiff
path: root/package/uclibc++/patches/patch-fstream_eof
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-07-10 18:06:45 +0200
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2012-07-10 18:06:45 +0200
commit2b19147fc3652939ca14a0b9b5b8f3a35381ae74 (patch)
tree9197abde260006a713947a7df6cac49f5f30f01c /package/uclibc++/patches/patch-fstream_eof
parentac5e1b10e4a45b31fdc84f77365f0c7812199754 (diff)
update uclibc++
Diffstat (limited to 'package/uclibc++/patches/patch-fstream_eof')
-rw-r--r--package/uclibc++/patches/patch-fstream_eof15
1 files changed, 0 insertions, 15 deletions
diff --git a/package/uclibc++/patches/patch-fstream_eof b/package/uclibc++/patches/patch-fstream_eof
deleted file mode 100644
index 80a7b77ff..000000000
--- a/package/uclibc++/patches/patch-fstream_eof
+++ /dev/null
@@ -1,15 +0,0 @@
-$Id$
- * fix crash on reading from closed fstream
-
---- uClibc++-0.2.2.orig/include/fstream 2007-06-04 00:51:12.000000000 +0200
-+++ uClibc++-0.2.2/include/fstream 2009-11-20 22:52:48.000000000 +0100
-@@ -206,6 +206,9 @@ namespace std{
- return traits::eof();
- }
-
-+ if(fp == 0)
-+ return traits::eof();
-+
- if(basic_streambuf<charT,traits>::eback() == 0){
- //No buffer, so...
- charT c;