summary refs log tree commit diff stats
path: root/src/fe-gtk/notifications/notification-winrt.cpp
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2018-03-04 12:14:09 -0500
committerPatrick Griffis <tingping@tingping.se>2018-03-04 12:38:57 -0500
commitf6333b592b0d574d68e96d04a09a6cae956ee6c3 (patch)
tree2e15f237b53200d04c767401a451a47b5aca8573 /src/fe-gtk/notifications/notification-winrt.cpp
parent6e4fc09ce005db965523ef8930ea51ca429815a2 (diff)
Fix out of bounds read when DCC message sender contains quotes
This cannot be triggered by any user generally.

Fixes #2128
Diffstat (limited to 'src/fe-gtk/notifications/notification-winrt.cpp')
0 files changed, 0 insertions, 0 deletions
background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

(test -f $srcdir/src/common/hexchat.c) || {
	echo -n "**Error**: Directory "\`$srcdir\'" does not look like the top-level directory"
	exit 1
}

if [ "$1" = "--copy" ]; then
	shift
	aclocal --force --install || exit 1
	intltoolize --force --copy --automake || exit 1
	autoreconf --force --install --include=m4 -Wno-portability || exit 1
else
	intltoolize --automake || exit 1
	autoreconf --install --symlink --include=m4 -Wno-portability || exit 1
fi

if [ "$NOCONFIGURE" = "" ]; then
        $srcdir/configure "$@" || exit 1

        if [ "$1" = "--help" ]; then exit 0 else
                echo "Now type \`make\' to compile" || exit 1
        fi
else
        echo "Skipping configure process."
fi

set +x