diff options
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/input_file.c | 9 | ||||
-rw-r--r-- | src/input/input_gnome_vfs.c | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/src/input/input_file.c b/src/input/input_file.c index fe5782af5..f3c4284f2 100644 --- a/src/input/input_file.c +++ b/src/input/input_file.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_file.c,v 1.100 2005/02/07 23:58:57 tmattern Exp $ + * $Id: input_file.c,v 1.101 2005/05/29 12:29:42 hadess Exp $ */ #ifdef HAVE_CONFIG_H @@ -290,6 +290,13 @@ static int file_plugin_open (input_plugin_t *this_gen ) { } } + if (file_plugin_get_length (this_gen) == 0) { + _x_message(this->stream, XINE_MSG_FILE_EMPTY, this->mrl, NULL); + xine_log (this->stream->xine, XINE_LOG_MSG, + _("input_file: File empty: >%s<\n"), this->mrl); + return 0; + } + return 1; } diff --git a/src/input/input_gnome_vfs.c b/src/input/input_gnome_vfs.c index 3ce0efa62..246e20023 100644 --- a/src/input/input_gnome_vfs.c +++ b/src/input/input_gnome_vfs.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_gnome_vfs.c,v 1.26 2005/05/13 14:33:09 hadess Exp $ + * $Id: input_gnome_vfs.c,v 1.27 2005/05/29 12:29:42 hadess Exp $ */ @@ -286,6 +286,13 @@ gnomevfs_plugin_open (input_plugin_t *this_gen ) return 0; } + if (gnomevfs_plugin_get_length (this_gen) == 0) { + _x_message(this->stream, XINE_MSG_FILE_EMPTY, this->mrl, NULL); + xine_log (this->stream->xine, XINE_LOG_MSG, + _("input_file: File empty: >%s<\n"), this->mrl); + return 0; + } + return 1; } |