This isn't my bug but it still made me lol. The Dev manager was responsible for developing one component for a really important release. The week before the release the Dev Manager went on holiday and people tried to use his component. It worked for about 10 minutes and then fell over, the office was in panic. The very best devs on the team were assigned to find out the problem.

Eventually one of my colleagues burst into laughter and I swiveled my chair to see the following C# code (or thereabouts) on his screen.

		public string GetNewGuid()
		{
			SqlConnection connection = new SqlConnection(Resources.ConnectionString);
			connection.Open();
			SqlCommand command = connection.CreateCommand();
			command.CommandText = "select new_id()";
			SqlDataReader reader = command.ExecuteReader();
			reader.Read();
			string guid = reader.GetString(0);
			connection.Close();
			return guid;
		}

The problem (aside from the REAL WTF) was due to the fact that he didn't dispose the DataReader. After about 10 minutes of the app executing a ridiculous number of round trips to the database the database refused to give out any new readers (or the app ran out of memory, I forget) and the whole thing fell over.

This method was replaced by:

		public string GetNewGuid()
		{
			return Guid.NewGuid().ToString();
		}