# HG changeset patch # User Ethan Blanton # Date 1141698373 0 # Node ID ae682fa78d7fe7682fce623faa4c985310f21684 # Parent b53fe4fa46b6ba1d27cc007e239e25c617955380 [gaim-migrate @ 15798] If gaim::debug is not given a type, the type was used uninitialized. CID 83. committer: Tailor Script diff -r b53fe4fa46b6 -r ae682fa78d7f plugins/tcl/tcl_cmds.c --- a/plugins/tcl/tcl_cmds.c Tue Mar 07 02:21:37 2006 +0000 +++ b/plugins/tcl/tcl_cmds.c Tue Mar 07 02:26:13 2006 +0000 @@ -653,6 +653,7 @@ } if (objc == 4) { + type = 1; /* Default to warning */ title = Tcl_GetString(objv[1]); msg1 = Tcl_GetString(objv[2]); msg2 = Tcl_GetString(objv[3]);