active questions tagged errors - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T13:50:58Zhttp://stackoverflow.com/feeds/tag/errorshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1917876/php-simplexmlloadfile-catch-file-errors0PHP simplexml_load_file - catch file errorsyoda2009-12-16T21:30:02Z2009-12-19T02:06:33Z
<p>Hi,</p>
<p>Is it possible to catch simplexml file errors? I'm connecting to a webservice that sometimes fails, and I need to make the system skip a file if it returns some http error or something similar.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1928666/wpf-webbrowser-silent-mode-through-iwebbrowser2-interface-not-working0WPF WebBrowser Silent mode through IWebBrowser2 interface not working?jimbojones2009-12-18T14:53:36Z2009-12-18T18:09:30Z
<p>I'm trying to silence Javascript errors in the WPF webbrowser control. According to the "Getting to the native IWebBrowser2" comment on this <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.webbrowser.aspx" rel="nofollow">page</a>, one can access the IWebBrowser2 interface. From there I thought I could set the Silent property to true, like this:</p>
<pre><code> /// <summary>
/// Handle navigation events
/// </summary>
protected virtual void OnNavigated(object sender, NavigationEventArgs e)
{
MakeComBrowserSilent();
}
private void MakeComBrowserSilent()
{
IServiceProvider serviceProvider = (IServiceProvider)_webViewer.Browser.Document;
Guid serviceGuid = SID_SWebBrowserApp;
Guid iid = typeof(SHDocVw.IWebBrowser2).GUID;
SHDocVw.IWebBrowser2 comBrowser = (SHDocVw.IWebBrowser2)serviceProvider.QueryService(ref serviceGuid, ref iid);
comBrowser.Silent = true;
//comBrowser.PutProperty("Silent", true);
}
</code></pre>
<p>I've tried the Silent=true, and also PutProperty. Neither works and I still get Javascript errors popping up.</p>
<p>Anyone know how to silence Javascript debug errors in the WPF WebBrowser control?</p>
<p>TIA.</p>
http://stackoverflow.com/questions/1911379/not-well-formed-errors-in-xml-file-after-ftp0"Not Well-Formed" Errors in XML file after FTPBill H2009-12-16T00:04:02Z2009-12-16T00:38:39Z
<p>Using WS_FTP Professional, I have a backup process that runs every night. </p>
<p>WS_FTP basically sets up the process to FTP to a remote server through windows scheduler.
Specifically, It sends an XML file that is approximately 2.5 megs to a server for download.</p>
<p>I check that the XML file is well-formed before the FTP and it always is. The problem I am having is that after is get's uploaded to the server through my backup process, the xml file becomes not well-formed. If I download the file and check the line number where the error/s occur there is usually either just random numbers/letters, a broken tag, or a "NULL" symbol. </p>
<p>I've checked that WS_FTP isn't compressing or encrypting the file before sending it, and it's sending the file in ASCII mode.</p>
<p>It happens, seemingly random. Sometimes the upload works fine, other times the errors occur.</p>
<p>If I upload the same file 10 times then about 8 of those times the file will have the errors and they will always occur on the same line (6481). The file get's updated daily, so tomorrow if I upload the file, I'll get the same number of errors but it may be on a different line, almost as if the error is occurring after a set number of characters (if that makes any sense). </p>
<p>If anybody can make sense of this I'd greatly appreciate it. It's driving me nuts.</p>
<p>UPDATE</p>
<p>I just ran a couple of tests and it looks like it is in fact happening on the same byte.</p>
http://stackoverflow.com/questions/1908925/how-to-trap-a-php-script-error-which-dies-perl-has-eval0How to trap a PHP script error which dies (Perl has eval)?zzapper2009-12-15T17:07:25Z2009-12-15T18:09:23Z
<p>Hi
I've got a script which works fine on our development server but dies on the clients server.</p>
<pre><code>error_reporting(E_ALL);
if (function_exists('simplexml_load_file')) echo "function exists";
if (file_exists('test.xml'))
{
echo("<hr>just about to read local xml file :".__LINE__);
$xml = simplexml_load_file('test.xml'); // dies here
</code></pre>
<p>In Perl you can trap such errors with eval, is there anything equivalent in PHP?</p>
http://stackoverflow.com/questions/1904295/how-to-find-if-thee-are-javascipt-errors-in-the-page-using-selenium-rc0How to find if thee are javascipt errors in the page using selenium rcunknown (google)2009-12-14T23:33:16Z2009-12-14T23:59:36Z
<p>I am using selenium rc and I would like to know if there are any javascript errors occured in the page. Is there any Selenium API to check if there are any javascript errors? Thanks very much.</p>
http://stackoverflow.com/questions/1372030/remove-ipsec-policy-from-w2k3-dc0Remove IPSEC policy from W2k3 DCBernesto2009-09-03T08:01:17Z2009-12-09T16:58:26Z
<p>I just can't for the life of me remember. We were setting up IPSEC for a VPN along time ago and added IPSEC that has always caused 1091 1085 errors. We are not using it so I would like to remove it but cant find where.</p>
http://stackoverflow.com/questions/1820791/strange-isolated-jquery-errors0Strange isolated jquery errorsBjork242009-11-30T16:18:29Z2009-11-30T16:18:29Z
<p>After launching a major redesign for a client, we've received a handful of emails from users who are experiencing a script that is slowing down, and eventually crashing their browsers. The errors that they send to us always point back to jquery, but I know the jquery itself shouldn't be throwing any errors.</p>
<p>I was originally using the minified version, but to better track the errors, I switched up to the development (all line breaks) version. The errors are calling one of two lines:</p>
<p>Line 1623: <a href="http://img.skitch.com/20091130-j8mp1mbjqhck1cwq49ptxstgp.jpg" rel="nofollow">A break in the Sizzle.filter function</a><br/>
Line 2317: <a href="http://img.skitch.com/20091130-xpta7eqf3bhwmj8e91371mi9r6.jpg" rel="nofollow">A inner, ending bracket on the dirCheck function</a></p>
<p>Has anyone seen these errors pop up on their own sites? The cases are isolated (I'd say less than 1 or 2% of users are having problems), but it still needs to be ironed out. FWIW: no other js scripts are throwing errors. Thanks!</p>
http://stackoverflow.com/questions/1807355/ruby-broken-pipe-errnoepipe0(ruby) Broken pipe (Errno::EPIPE)hatorade2009-11-27T08:11:15Z2009-11-27T08:17:30Z
<p>i have a <code>Broken pipe (Errno::EPIPE)</code> error popping up and i don't understand what it is or how to fix it. the full error is:</p>
<pre><code>example.rb:19:in `write': Broken pipe (Errno::EPIPE)
from example.rb:19:in `print'
from example.rb:19
</code></pre>
<p>line 19 of my code is:</p>
<pre><code>vari.print("x=" + my_val + "&y=1&z=Add+Num\r\n")
</code></pre>
http://stackoverflow.com/questions/1774180/fun-error-logging-reporting-idea-for-small-website0fun error logging / reporting idea for small websiteer12342009-11-21T01:24:49Z2009-11-21T01:31:08Z
<p>I want to write (or implement) a quick and easy logging solution for our website. I figure rss is fine for the format.</p>
<p>I was thinking of piping apache's error log to a simple script that, if the url passes a blacklist, gets logged into a sqlite database. The database will store for each log entry the ip address, url, current count of this error, hash of this error, datetime, etc.</p>
<p>I was going to capture javascript/ajax errors by having javasascript make image requests that will 404 so that they will get logged as well. </p>
<p>We already capture php errors in its own log. I could easily integrate it into this database. Another script would be used to generate the rss.</p>
<p>I was hoping logrotate would handle rotating the sqlite database file to prevent it from getting too large.</p>
<p>Granted this won't scale, are there any issues I should avoid? Better quick and hacky solutions?</p>
http://stackoverflow.com/questions/1373944/how-to-disable-elmah-memory-logging0How to disable Elmah memory logging?Jasolution2009-09-03T14:58:13Z2009-11-19T10:00:02Z
<p>We're using Elmah in an asp.net 2.0 web app. Is there a way to disable the default Memory Log provider? In other words, we're logging to SQL Server and because of this we want to completely eliminate the MemoryErrorLog provider that is true by default.</p>
<p>Thanks,</p>
<p>Jason</p>
http://stackoverflow.com/questions/1719224/stack-overflow-error2stack overflow errorYgam2009-11-12T01:09:53Z2009-11-12T02:19:16Z
<p>i just got my first ever stack overflow when I ran this script:</p>
<pre><code>var hlat = 0.00;
var hlong = 0.00;
var mapdiv = document.getElementById('map');
var map_url = base_url + 'ajax/getPropMap';
var id_url = base_url + 'hotels/gethotel_id';
var id=0;
var map = null;
// apply gmaps to product map div
$(function(){
$.get(id_url, {id: segment}, getMapDetails);
});
function getMapDetails(data){
$.getJSON(map_url, {id:data}, addToProdMap);
}
function getMapDetails(data){
addProdMap(data);
}
function addProdMap(data){
hlat = data.latitude;
hlong = data.longitude;
map = new google.maps.Map(mapdiv, {
center : new google.maps.LatLng(hlat, hlong),
zoom : 13,
mapTypeId : 'hybrid'
});
var coords = new google.maps.LatLng(hlat, hlong);
var marker = new google.maps.Marker({
clickable : true,
map: map,
icon : 'http://labs.google.com/ridefinder/images/mm_20_red.png',
position : coords
})
}
</code></pre>
<p>How do I deal with this? Firefox closes and IE displays the stack overflow error</p>
http://stackoverflow.com/questions/1681174/besides-treat-warnings-as-errors-and-fixing-memory-leaks-what-other-ideas-shou10Besides "treat warnings as errors" and fixing memory leaks, what other ideas should we implement as part of our coding standards?zerocl2009-11-05T15:13:30Z2009-11-06T16:27:25Z
<p>First let me say, I am not a coder but I help manage a coding team. No one on the team has more than about 5 years experience, and most of them have only worked for this company.. So we are flying a bit blind, hence the question.</p>
<p>We are trying to make our software more stable and are looking to implement some "best practices" and coding standards. Recently we started taking this very seriously as we determined that much of the instability in our product could be linked back to the fact that we allowed Warnings to go through without fixing when compiling. We also never bothered to take memory leaks seriously enough. </p>
<p>In reading through this site we are now quickly fixing this problem with our team but it begs the question, what other practices can we implement team wide that will help us? </p>
<p>Edit: We do fairly complex 2D/3D Graphics Software that is cross-platform Mac/Windows in C++.</p>
http://stackoverflow.com/questions/1645661/turn-off-warnings-and-errors-on-php-mysql1Turn off warnings and errors on php/mysqlOssi2009-10-29T18:27:14Z2009-10-30T10:45:53Z
<p>I am getting expected notices and warnings, and would like to turn them off on my php file. errors are:</p>
<p>Warning: fsockopen()</p>
<p>and notices are:</p>
<p>Notice: A non well formed numeric value encountered in</p>
<p>I am planning to use cron for this php script, and do not want to get any errors or notices logged anywhere... ie cpanel error log etc...</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1641604/what-you-mean-by-unable-to-resolve-resource-bundle-datamanagement-error-occure0what you mean by Unable to resolve resource bundle "datamanagement" error occured in flex?R.Vijayakumar2009-10-29T04:23:53Z2009-10-29T06:38:34Z
<p>when will i add Advanced data grid in my project then it shows eror like </p>
<pre><code>everity and Description Path Resource Location Creation Time Id
Unable to resolve resource bundle "datamanagement".
</code></pre>
<p>but separte mxml file then add it not show any errors .my project i used locale binding for multi language so i add in complier <code>-locale=English,Japan,Arabic,Dutch,India -source-path=locale/{locale}</code> so if i add like may be error occured i dont know What's reason error occurred ? i am seeking soluation lot of time , unable to find it . if you know kindly explain me </p>
http://stackoverflow.com/questions/1638841/how-are-files-validated-when-opened1How are files validated when opened?Al C2009-10-28T17:34:40Z2009-10-28T17:43:01Z
<p>Suppose a user selects a file in a dialogue box, and the app then opens the file for reading, etc. Users can open "incorrect" files--they can select a binary file, for example, even if the file they're supposed to be selecting is a text file. </p>
<p>I recognize that sometimes improper file types generate exceptions, which can be handled. But sometimes the files don't create exceptions; instead, they just cause the application to work improperly.</p>
<p>What's the standard way to code for these kinds of situations?</p>
http://stackoverflow.com/questions/1579420/php-always-run-function1PHP Always run functionNic Hubbard2009-10-16T17:43:15Z2009-10-16T17:51:07Z
<p>I am trying to get some errors returned in JSON format. So, I made a class level var:</p>
<pre><code>public $errors = Array();
</code></pre>
<p>So, lower down in the script, different functions might return an error, and add their error to the $errors array. But, I have to use return; in some places to stop the script after an error occurs. </p>
<p>So, when I do that, how can I still run my last error function that will return all the gathered errors? How can I get around the issue of having to stop the script, but still wanting to return the errors for why I needed to stop the script?!</p>
http://stackoverflow.com/questions/1574840/what-is-the-way-to-manage-errors-and-return-json0What is the way to manage errors and return JSON?Nic Hubbard2009-10-15T20:30:37Z2009-10-15T20:56:17Z
<p>I have a php application, that, when it encounters an error, will run a function that uses <code>trigger_error()</code> as well as uses the following function to return the error as JSON. </p>
<pre><code>$this->returnError('My error');
</code></pre>
<p>In some places in the script, multiple errors occur, but only one gets returned, because the <code>returnError()</code> function will stop the script. So, the errors are not entirely accurate. What I want to do is gather all errors into an array, then at the end of the script send that through JSON so that the use can get nicely formatted JSON of the errors.</p>
<p>So, my question is, what is the best way to go about this? Is this the best idea, or is there a better method of capturing and returning multiple errors?</p>
http://stackoverflow.com/questions/1558038/rails-modify-validation-error-reporting0Rails: Modify Validation error reporting?neezer2009-10-13T03:12:49Z2009-10-14T00:50:12Z
<p>The standard Rails validation wraps my error-filled fields in a <code>div</code> of class <code>fieldWithErrors</code>.</p>
<p>How can I change it so that the erroneous element's parent gets assigned that class instead of having a new <code>div</code> created on the page?</p>
<p>EDIT:</p>
<p><a href="http://apidock.com/rails/ActionView/Helpers/ActiveRecordHelper/error%5Fmessages%5Ffor" rel="nofollow">Per this website</a>, this wraps errors in <code>span</code>s instead of <code>div</code>s, which helps my formatting a little, but I'd really love to just stick the error class in the parent element...</p>
<p><code>app/config/environment.rb</code> (in the initializer block):</p>
<pre><code>config.action_view.field_error_proc = Proc.new { |html_tag, instance| %(<span class="fieldWithErrors">#{html_tag}</span>) }
</code></pre>
<p>The <a href="http://thewebfellas.com/blog/2008/4/21/error-fields-with-a-hpricot-twist" rel="nofollow">Hpricot method listed on that site</a> looks like what I want, but I don't know where I should be putting it. I also keep getting <code>uninitialized constant ActionView</code> errors too. Can someone help?</p>
http://stackoverflow.com/questions/1457096/trying-to-use-loader-class-inside-of-package-getting-error-1046-type-was-not-fo1Trying to use Loader class inside of package, getting Error 1046: Type was not found or was not a compile-time constantLeon Gaban2009-09-21T21:54:01Z2009-10-13T18:00:31Z
<p>This is driving me nuts, I can run this fine with code on the main timeline, but when I put this inside of my sub Class I'm getting the Compile time error and 1180: Call to a possibly undefined method.</p>
<p>This is the line causing all my grief: <strong>public var splashLoader:Loader = new Loader();</strong></p>
<p>What I don't get is, inside my main class I'm using this exact same syntax with a different variable to load my XML file, but I can't seem to get this to work inside of my sub class.</p>
<pre><code>package src.howdinicurtain {
import flash.events.Event;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.display.MovieClip;
import flash.display.DisplayObject;
import flash.net.URLLoaderDataFormat;
public class HowdiniFrame extends MovieClip {
trace("called HowdiniFrame");
//public var splashLoader; // will run, but get 1010 error
public var splashLoader:Loader = new Loader();
public function HowdiniFrame(url:String, loadX, loadY):void
{
trace("inside of function");
splashLoader.load(new URLRequest(url))
splashLoader.x = loadX;
splashLoader.y = loadY;
addChild(splashLoader);
}
}
</code></pre>
<p>}</p>
<p>This is where I'm calling the function in my main class:</p>
<pre><code>hc = new HowdiniFrame(splashPath, 0, 20);
</code></pre>
http://stackoverflow.com/questions/1553736/undefined-notice-while-populating-arrays0'Undefined' Notice while populating arraysjakeisonline2009-10-12T10:08:57Z2009-10-12T12:51:42Z
<p>While populating an array with data from a SimpleXML call, PHP throws exception to what it believes as 'Undefined' keys, however, the output is actually correct.</p>
<pre><code>$doc = new SimpleXmlElement($http_result, LIBXML_NOCDATA);
$result = array();
$x = 0;
foreach($doc->users->user as $item) {
$result['user'][$x]['id'] .= $item->id;
$result['user'][$x]['name'] .= $item->name;
$result['user'][$x]['email'] .= $item->email;
$x++;
}
print json_encode($result);
</code></pre>
<p>This actually outputs what I expect, i.e. <code>{"user":[{"id":"4843977","name":"Test New User","email":"test@newuser.com"}]}</code></p>
<p>However, the following errors are also present, and I'm not totally sure why - this doesn't appear in 5.2.6 but does for 5.2.10</p>
<pre><code>Notice: Undefined index: user in /var/vhosts/sys-dev/docs/file.php on line 36
Notice: Undefined offset: 0 in /var/vhosts/sys-dev/docs/file.php on line 36
Notice: Undefined index: id in /var/vhosts/sys-dev/docs/file.php on line 36
Notice: Undefined index: name in /var/vhosts/sys-dev/docs/file.php on line 37
Notice: Undefined index: email in /var/vhosts/sys-dev/docs/file.php on line 38
Notice: Undefined offset: 1 in /var/vhosts/sys-dev/docs/file.php on line 36
Notice: Undefined index: id in /var/vhosts/sys-dev/docs/file.php on line 36
Notice: Undefined index: name in /var/vhosts/sys-dev/docs/file.php on line 37
Notice: Undefined index: email in /var/vhosts/sys-dev/docs/file.php on line 38
Notice: Undefined offset: 2 in /var/vhosts/sys-dev/docs/file.php on line 36
Notice: Undefined index: id in /var/vhosts/sys-dev/docs/file.php on line 36
Notice: Undefined index: name in /var/vhosts/sys-dev/docs/file.php on line 37
Notice: Undefined index: email in /var/vhosts/sys-dev/docs/file.php on line 38
</code></pre>
http://stackoverflow.com/questions/1534671/capture-contents-of-firefox-ie-error-console-through-code0Capture contents of Firefox/IE error console through code?davr2009-10-07T22:55:14Z2009-10-07T23:00:34Z
<p>Is it possible to capture the contents of either the Firefox or IE javascript error console? I'm thinking adding a feature where when a user clicks the 'Report A Bug' link on my site, it also sends along the contents of the console, incase there are any useful errors in it. That way I don't have to tell them to manually open it and copy & paste the contents to me.</p>
http://stackoverflow.com/questions/1529215/why-wont-my-site-load-from-one-computer-but-it-will-another0Why won't my site load from one computer, but it will another?Max Schmeling2009-10-07T02:36:23Z2009-10-07T03:24:28Z
<p>Pretty vague title, but basically I can only get "my site" to load from one computer. I've purchased hosting and a domain name, set it all up, and there's nothing there yet, but the default directory browser thing shows up when I go to the url on my work computer, but from my home computer and a virtual machine it doesn't... what should I look at to troubleshoot? Everything else works fine from home, so I wouldn't think it would be a router issue or anything like that.</p>
<p>Thoughts?</p>
<p>UPDATE: It works from my work computer, and a friend of mine's computer at her house, but not on my PC or laptop... I've tried rebooting, unplugging cable modem and router and plugging them back in, dnsflush, turning windows firewall off, and everything i can think of... i don't have any idea what to do now</p>
<p>UPDATE: This is interesting... when I tracert from my computer it stops and gives Request Time Out one hop before getting to the actual web server. When I do the tracert using dnsstuff.com, it makes the hop just fine and shows the web server on there... I don't get it.</p>
http://stackoverflow.com/questions/1416638/include-and-require-problem-when-i-use-it-with-file-out-of-the-folder0include and require problem when I use it with file out of the folderWaseem2009-09-13T01:54:26Z2009-09-13T02:17:39Z
<p>hi</p>
<p>I usually use this line to import file from out of the current folder and it's work fine on my local host server</p>
<pre><code>require("../DataBase.class.php");
</code></pre>
<p>but when I upload the script on my website I get this Warning</p>
<blockquote>
<p>Warning:
include(../DataBase.class.php)
[function.include]: failed to open
stream: No such file or directory</p>
</blockquote>
http://stackoverflow.com/questions/1392855/visual-c-where-can-i-get-a-list-of-all-errors-warnings1Visual C++: Where can I get a list of all errors & warnings?Ashwin2009-09-08T09:06:27Z2009-09-08T09:06:27Z
<p>Is there some place where I can get a <strong>list</strong> of all Visual C++ <strong>compiler/linker errors/warnings</strong>? I am looking for both the error/warning number and the error/warning text that is displayed by the compiler. MSDN has them all, but they are linked to on individual pages.</p>
http://stackoverflow.com/questions/1377671/how-to-see-errors-in-ie-71How to See Errors In IE 7Senthil2009-09-04T07:17:21Z2009-09-04T07:46:49Z
<p>I am using javascript and ajax the most in my project source. All functions are working well in firefox. But some of them are not working in ie 6 and 7 browsers. Mainly Delete is not working for any page in my project. I dont know how to resolve those bugs. And dont know how to see errors in ie browsers.. So Plz help me to resolve this issue. Thanx in advance</p>
http://stackoverflow.com/questions/1359765/php-do-something-if-no-errors-warnings-occur-in-set-of-expressions1PHP - Do something if no errors/warnings occur in set of expressionsmeder2009-08-31T22:52:57Z2009-08-31T23:02:35Z
<p>I have a page that will basically be used to concatenate a bunch of xml files, it will act as glue that binds them together. There's a small chance the xml files that are being combined might not be well formed because the user will have access.</p>
<p>I'm trying to basically rewrite a live file <em>if</em> there are no warnings / errors thrown in a specific set of code.</p>
<p>So far I have:</p>
<pre><code>try {
$first = simplexml_load_file( 'file.xml' );
} catch ( Exception $e ) {
$write = false;
}
if ( !$write ) {
// write to live file.
}
</code></pre>
<p>This obviously catches error exceptions, but sometimes function invocations can return warnings and not errors per se, what can I use to catch errors, basically only write if no warnings and errors have been thrown in the try block?</p>
<p>Example of a warning being thrown:</p>
<pre><code>Warning: simplexml_load_file() parser error : Start tag expected, '<'
</code></pre>
http://stackoverflow.com/questions/1328715/declarations-error-in-include-and-require-functions0declarations error in include and require functionsWaseem2009-08-25T14:36:37Z2009-08-25T14:47:17Z
<p>I write this code</p>
<pre><code>include('database.php');
function get_something() {
database instructions
}
function get_another(){
database instructions
}
</code></pre>
<p>and I try to fix by this</p>
<pre><code>function get_something() {
include('database.php');
database instructions
}
function get_another(){
include('database.php');
database instructions
}
</code></pre>
<p>I get redeclaration error .</p>
<p>how can I fix this ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1263523/pdo-catch-result1PDO Catch resultTom2009-08-11T23:26:07Z2009-08-21T19:12:47Z
<p>How does one catch/echo the insert results? I have a insertion statement that say that no errors occured but nothing is actually placed in the database. </p>
http://stackoverflow.com/questions/1310388/common-c-mistakes2Common C++ mistakes [closed]learner2009-08-21T07:00:07Z2009-08-21T08:27:57Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/30373/what-c-pitfalls-should-i-avoid">What C++ pitfalls should I avoid ?</a> </p>
</blockquote>
<p>While reviewing code from an inexperienced programmer, we often came across common mistakes in C++ code such as:</p>
<ul>
<li>Logical errors such as an off-by-one error (OBOE).</li>
<li>Boundary conditions unhanded</li>
<li>Problems with macros</li>
<li>Missing break in a switch statement</li>
<li>Memory leaks</li>
</ul>
<p>What are other common errors you often come across?</p>
http://stackoverflow.com/questions/1282505/how-to-prevent-fat-finger-syndrome-in-absence-of-req-predeclearation1How to prevent "fat finger syndrome" in absence of req. predeclearation?NoMoreZealots2009-08-15T18:26:47Z2009-08-15T20:56:04Z
<p>For example:</p>
<pre><code>on rising edge (reset):
sync = defaultValue;
...
... various processing constructs ...
...
if (event == someEvent) // Back at the Batcave
// The vilianous Fat finger Syndrome
// strikes again!
synch = someEventProcessing()
...
... various processing constructs ...
...
someSyncProcessing(sync) // Foiled again!
</code></pre>
<p>All occurances of the varible "sync" should have been spelled "sync" instead of "synch." I even read the line with the incorrect spelling and my brain "tokenized" it's symbolic meaning.</p>
<p>I looked at the code for a couple days before I found the typo.
How do you prevent this when the language doesn't generate any errors?
There was a work around in the code because somebody couldn't find the source of the "Black magic" causing the program's errant behavior. This obscurred the problem even more.
(This code was actually paraphrased from a verilog program. But seems like it could be a problem in any language that allow this type of thing.)</p>