Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 148361 Details for
Bug 229259
CVE-2007-1006 Ekiga format string flaw
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Upstream patch extracted from SVN
ekiga.patch (text/plain), 3.32 KB, created by
Josh Bressers
on 2007-02-19 20:01:46 UTC
(
hide
)
Description:
Upstream patch extracted from SVN
Filename:
MIME Type:
Creator:
Josh Bressers
Created:
2007-02-19 20:01:46 UTC
Size:
3.32 KB
patch
obsolete
>Index: urlhandler.cpp >=================================================================== >--- urlhandler.cpp (revision 4825) >+++ urlhandler.cpp (revision 4826) >@@ -532,13 +532,13 @@ > > if (call_address.Find ("+type=directory") != P_MAX_INDEX) { > >- gm_main_window_flash_message (main_window, _("User not found")); >+ gm_main_window_flash_message (main_window, "%s", _("User not found")); > call_history_item->end_reason = g_strdup (_("User not found")); > endpoint->SetCallingState (GMManager::Standby); > } > else { > >- gm_main_window_flash_message (main_window, _("Failed to call user")); >+ gm_main_window_flash_message (main_window, "%s", _("Failed to call user")); > call_history_item->end_reason = g_strdup (_("Failed to call user")); > } > >Index: manager.cpp >=================================================================== >--- manager.cpp (revision 4825) >+++ manager.cpp (revision 4826) >@@ -715,7 +715,7 @@ > gnomemeeting_threads_enter (); > msg = g_strdup_printf (_("Forwarding call to %s"), > (const char*) forward_party); >- gm_main_window_flash_message (main_window, msg); >+ gm_main_window_flash_message (main_window, "%s", msg); > gm_history_window_insert (history_window, msg); > gnomemeeting_threads_leave (); > g_free (msg); >@@ -873,7 +873,7 @@ > /* Update the log and status bar */ > msg = g_strdup_printf (_("Call from %s"), (const char *) utf8_name); > gnomemeeting_threads_enter (); >- gm_main_window_flash_message (main_window, msg); >+ gm_main_window_flash_message (main_window, "%s", msg); > gm_chat_window_push_info_message (chat_window, NULL, msg); > gm_history_window_insert (history_window, msg); > gnomemeeting_threads_leave (); >@@ -913,7 +913,7 @@ > /* Display the action message */ > gnomemeeting_threads_enter (); > if (short_reason) >- gm_main_window_flash_message (main_window, short_reason); >+ gm_main_window_flash_message (main_window, "%s", short_reason); > if (long_reason) > gm_history_window_insert (history_window, long_reason); > gnomemeeting_threads_leave (); >@@ -1061,7 +1061,7 @@ > msg = g_strdup_printf (_("Connected with %s"), utf8_name); > gm_main_window_set_status (main_window, utf8_name); > gm_main_window_set_panel_section (main_window, CALL); >- gm_main_window_flash_message (main_window, msg); >+ gm_main_window_flash_message (main_window, "%s", msg); > gm_chat_window_push_info_message (chat_window, NULL, msg); > gm_main_window_update_calling_state (main_window, GMManager::Connected); > gm_chat_window_update_calling_state (chat_window, >@@ -1351,7 +1351,7 @@ > gm_calls_history_item_free (call_history_item); > > gm_history_window_insert (history_window, msg_reason); >- gm_main_window_flash_message (main_window, msg_reason); >+ gm_main_window_flash_message (main_window, "%s", msg_reason); > gm_chat_window_push_info_message (chat_window, NULL, ""); > gnomemeeting_threads_leave (); > >Index: sip.cpp >=================================================================== >--- sip.cpp (revision 4825) >+++ sip.cpp (revision 4826) >@@ -319,7 +319,7 @@ > #endif > > gm_history_window_insert (history_window, msg); >- gm_main_window_flash_message (main_window, msg); >+ gm_main_window_flash_message (main_window, "%s", msg); > if (endpoint.GetCallingState() == GMManager::Standby) > gm_main_window_set_account_info (main_window, > endpoint.GetRegisteredAccounts());
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 229259
: 148361