src/mod/module.cpp: Initialize variable correctly.

svn path=/dists/trunk/linux-kbuild-2.6/; revision=6981
This commit is contained in:
Bastian Blank 2006-07-11 08:00:07 +00:00
parent 78b97ce7cf
commit 43ae2b6949
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ const std::string module_real::symbol_prefix_crc ("__crc_");
const std::string module_real::symbol_prefix_ksymtab ("__ksymtab_");
module::module (const std::string &filename, bool kernel) throw ()
: kernel (kernel)
: kernel (kernel), is_vmlinux (false)
{
std::string::size_type t1 = filename.find_last_of ('/');
std::string::size_type t2 = filename.find_last_of ('.');