[Webkit-unassigned] [Bug 44466] New: Fix gcc warning introduced in 65731
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Aug 23 16:29:44 PDT 2010
https://bugs.webkit.org/show_bug.cgi?id=44466
Summary: Fix gcc warning introduced in 65731
Product: WebKit
Version: 528+ (Nightly build)
Platform: All
OS/Version: All
Status: NEW
Severity: Normal
Priority: P2
Component: New Bugs
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: ossy at webkit.org
CC: yurys at chromium.org, podivilov at chromium.org
Blocks: 43191
This warning introduced in http://trac.webkit.org/changeset/65731
gcc warning:
../../../WebCore/inspector/InspectorDOMAgent.cpp:1064: warning: control reaches end of non-void function
1055 bool InspectorDOMAgent::pauseOnBreakpoint()
1056 {
1057 #if ENABLE(JAVASCRIPT_DEBUGGER)
1058 s_domAgentOnBreakpoint = this;
1059 ScriptDebugServer::shared().breakProgram();
1060 bool deleted = !s_domAgentOnBreakpoint;
1061 s_domAgentOnBreakpoint = 0;
1062 return !deleted;
1063 #endif
1064 }
InspectorDOMAgent::pauseOnBreakpoint() should return a
default value when ENABLE(JAVASCRIPT_DEBUGGER) is false.
Could you fix it, please?
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list