Tagged Questions
The uninitialized tag has no wiki summary.
13
votes
3answers
23k views
PHP: What causes: “Notice: Uninitialized string offset” to appear?
I have a form that users fill out, on the form there are multiple identical fields, like "project name", "project date", "catagory", etc. Based on how many forms a user is submitting:
My goal is to:
...
8
votes
5answers
688 views
Uninitialized Structures in C
Are the members of a global or static structure in C guaranteed to be automatically initialized to zero, in the same way that uninitialized global or static variables are?
8
votes
3answers
510 views
Printing an uninitialized bool using cout (C++)
I have a class with a bool data member that is not initialized by the constructor. If I do
cout << x.myBoolDataMember;
where x is an object of this class in which the bool has not been ...
7
votes
4answers
150 views
If the value of an uninitialized variable shouldn't affect the value of an expression, is it still UB?
This is a follow-on from a discussion, which I think deserves a question of its own.
Basically, is the result of this undefined?
int x;
int y = 1 || x;
There are two "common-sense" arguments here:
...
7
votes
8answers
250 views
What benefit is there of allowing a variable to be left uninitialized?
In many languages you're allowed to declare a variable and use it before initializing it.
For example, in C++, you can write a snippet such as:
int x;
cout << x;
This would of course return ...
7
votes
9answers
3k views
Easy way find uninitialized member variables
I am looking for easy way to find uninitialized class member variable.
Runtime or compile time both methods OK.
Currently breakpoint in class constuctor and watch variable one by one.
6
votes
2answers
446 views
Variable might not have been initialized. Can I switch this warning on for a string?
When I compile this code
{$WARNINGS ON}
function Test(s: string): string;
var
t: string;
d: double;
begin
if s = '' then begin
t := 'abc';
d := 1;
end;
Result := t + FloatToStr(d);
...
5
votes
1answer
529 views
Fun with uninitialized variables and compiler (GCC)
The section §3.9.1/6 from the C++ Standard says,
Values of type bool are either true or false.
Now consider this code,
void f(bool b)
{
switch(b) //since b is bool, it's value can be either ...
4
votes
4answers
550 views
“Uninitialized use” warning in the g++ compiler
I’m using g++ with warning level -Wall -Wextra and treating warnings as errors (-Werror).
Now I’m sometimes getting an error “variable may be used uninitialized in this function”.
By “sometimes” I ...
4
votes
3answers
330 views
Why does perl report an incorrect line number for this warning regarding an uninitialized value used in an elsif?
I'm getting a strange warning against some Perl code and I'm hoping the SO-brain can help.
The code in question is:
sub add_observation {
my $self = shift;
my $observation = shift;
my ...
4
votes
6answers
330 views
Why do I see strange values when I print uninitialized variables?
following, variable in code has no initial value and printed this variable.
int var;
cout << var << endl;
output : 2514932
double var;
cout << var << endl;
output : ...
4
votes
2answers
373 views
Calling a method on an unitialized object (null pointer)
What is the normal behavior in Objective-C if you call a method on an object (pointer) that is nil (maybe because someone forgot to initialize it)? Shouldn't it generate some kind of an error ...
4
votes
4answers
161 views
cin erratic behaviour
I'm a newbie to C++. Small code sample follows:
int main(int argc, char* argv[]) {
char ch1;
int int1;
cin >> ch1;
cin >> int1;
cout << ch1 << ...
4
votes
10answers
794 views
Is there a use for uninitialized pointers in C or C++?
In one of the comments in this question, it was brought out that initializing C++ pointers by default would break compatibility with C.
That's fine, but why would something like this matter? I would ...
4
votes
4answers
1k views
When does Perl auto-initialize variables?
Here is some simple Perl to count the number of times a value occurs in an array. This runs without any warnings.
use warnings;
use strict;
my @data = qw(1 1 2 3 4 5 5 5 9);
my %histogram;
foreach ...
3
votes
1answer
132 views
Images Flash White in Internet Explorer 9 While Navigating
I am developing a website in XHTML 1.1/CSS 3.0 and I have a problem with Internet Explorer 9. Each time I change pages from "Home" to "Features" various images flash 'white' before filling in. This ...
3
votes
2answers
130 views
Detect passing pointer to uninitialized variable
Some functions have a pointer argument that points to where a result from
calling the function should be stored, but the function also require that
when calling the function this pointer points to ...
3
votes
6answers
322 views
C++ - value of uninitialized vector<int>
I understand from the answer to this question that values of global/static uninitialized int will be 0. The answer to this one says that for vectors, the default constructor for the object type ...
3
votes
2answers
344 views
Unable to include a Class in to another class in Ruby: uninitialized constant (NameError)
Lets say I have three classs, each define in its own file. e.g. ClassA in ClassA.rb etc...
class ClassA
def initialize
end
def printClassA
puts "This is class A"
end
end
class ClassB
...
3
votes
2answers
870 views
Uninitialized Constant in Rails 3.0.1 using the RedCloth 4.2.2 gem
Hope your day is going well! I'm having an issue with using RedCloth in my local application. I keep getting the following error:
uninitialized constant ActionView::CompiledTemplates::RedCloth
This ...
3
votes
2answers
181 views
Vector is pointing to uninitialized bytes when used in recvfrom call
In a function that I am writing I am trying to return a pointer to a vector of unsigned chars. The relevant code is below.
std::vector<unsigned char> *ret = new std::vector<unsigned ...
3
votes
1answer
125 views
Does valgrind track memory initialization through drivers?
valgrind is reporting uninitialized memory errors from code like this:
unsigned char buf[100];
struct driver_command cmd;
cmd.len = sizeof(buf);
cmd.buf = buf;
ioctl(my_driver_fd, READ, &cmd);
...
3
votes
7answers
401 views
How do we know that a string element in C is uninitialized?
Is there a way to know whether the element in a string in C has a value or not? I have tried using NULL, '', and ' ', but they don't seem to be working. I need to shift the characters down to index 0 ...
3
votes
6answers
1k views
Java uninitialized variable with finally curiosity
I was trying to come up with obscure test cases for an alternative open-source JVM I am helping with (Avian) when I came across an interesting bit of code, and I was surprised that it didn't compile:
...
2
votes
3answers
151 views
Mysterious “uninitialized value in an array” in algorithm for Perl challenge
Currently learning Perl, and trying to solve a little challenge to find the sum of even terms from the first 4,000,000 Fibonacci terms. I have created a Fibonnacci array that seems to work, and then ...
2
votes
2answers
429 views
Use of uninitialized value in string eq. left or right?
I am clearing up some code and I see in our server logs that the perl error is ...
Use of uninitialized value in string eq at .....
Looking at the code the line looks like this....
if ($level1 eq ...
2
votes
4answers
192 views
How do I get Eclipse/EPIC to stop warning about “Use of uninitialized value $ENV{whatever}” in my perl script?
This appears in the Eclipse text editor the first time EPIC encounters use of the special %ENV variable in a Perl script.
I'm not running anything in this environment, I just want the warning to go ...
2
votes
1answer
164 views
std::fill_n on array of non-PODs possible for first initializing?
is it possible to use std::fill to initialize an array of non-POD types?
The documentation says that std::fill uses operator= to initialize the array not placement copy construction. The assignment ...
2
votes
1answer
226 views
C++ : Why isn't my call to “std::uninitialized_copy” working?
I building a simple class that is supposed to mimic the functionality of the std::string class (as an exercise!):
#ifndef _STR12_1_H
#define _STR12_1_H
#include <string>
#include ...
2
votes
5answers
857 views
Uninitialized memory in C++Builder / Delphi
Are uninitialized variables in Delphi guaranteed to have any particular value
on the stack?
on the heap?
Since C++Builder generally follows Delphi's design, are uninitialized variables in ...
1
vote
2answers
43 views
Placement new to initialize inplace object
I recently came across a rather interesting serialization approach that utilized the transparency (common undefined behavior among compilers?) of uninitialized variables for "efficient" ...
1
vote
2answers
193 views
Valgrind - uninitialized values and bytes?
Valgrind is giving me errors saying -
Syscall param write(buf) points to uninitialised byte(s)
and
Conditional jump or move depends on uninitialised value(s)
I cannot figure out how to fix ...
1
vote
4answers
110 views
Java NullPointerException when there are no variables not initialiased
I am creating this login form using java swing and what I basically do is I get the values from the relevant JtextFields and send them onto another class. Thereafter I check it with the database ...
1
vote
2answers
124 views
uninitialized $_ in array element
I have code that contains:
use strict;
use warnings;
use List::Util;
my $index = first { $ARGV[$_] eq "something"; } 0..$#ARGV;
but I get
Use of uninitialized value $_ in array element at a.pl ...
1
vote
2answers
148 views
“Could not execute Model_Hotel::__construct()” with mysql_fetch_object, properties remain uninitialized
I'm running PHP 5.3.6 with MAMP 2.0.1 on Mac OS X Lion and I'm using Kohana 3.1.3.1.
I try to override the __set() and __get() methods of the standard Kohana ORM module with my own methods. Some of ...
1
vote
1answer
500 views
Devise Invitable: uninitialized constant
I'm using devise, wich works fine, now I try to use devise_invitable.
I installed it correctly, but I'm getting the error when I try to access
http://localhost:3000/users/invitation/new
The error ...
1
vote
4answers
191 views
Is un-initialized integer always default to 0 in c?
I'm reading source code of nginx and find it's not initializing many of the numerical variables, including ngx_int_t ngx_last_process;,here ngx_int_t defined as long int
#if 0
ngx_last_process = ...
1
vote
3answers
142 views
uninitialized local variables!
Here is my code:
int main(void)
{
int i;
Coords** latLng;
Quadrado* q1;
latLng[0] = AdicionaValores(latLng[0],-23.000490,-43.346687);
latLng[1] = ...
1
vote
3answers
125 views
Unitialized int value always the same (C++)
Given this code:
void main()
{
int x;
cout << x;
system("pause");
}
When I debug this piece of code, it always prints -858993460A. I read that its because VS set this as default value for ...
1
vote
2answers
129 views
malloc and obtaining recently freed memory
I am allocating the array and freeing it every callback of an audio thread. The main user thread (a web browser) is constantly allocating and deallocating memory based on user input. I am sending the ...
1
vote
2answers
314 views
Differences between gcc3 and gcc4 regarding uninitialized variables
We have a body of C++ code which is being ported from a RHEL4-based distro to RHEL-5-based.
It used to compile with g++ 3.4.3, and now compiles with g++ 4.1.2.
It turns out that there are local POD ...
1
vote
2answers
643 views
uninitialized constant with rails friendships
I'm new to rails and getting the following error:
NameError in FriendshipsController#create
uninitialized constant FriendshipsController
this also shows up:
...
1
vote
2answers
428 views
Rails Uninitalized Constant Error on Startup
I have a local development machine which has started to give me the following error on starting up the Rails server:
...
1
vote
3answers
370 views
Handle uninitialized parameters in java?
I'm calling a Java method from another language (R). Some of the parameters are optional in my R function. What's the best way to handle uninitialized parameters in a Java method? (Ideally without ...
1
vote
5answers
168 views
What are the valid values of the expression (uninitialized_bool ? 1 : 2)?
What is the set of valid outputs for the following, according to the standard?
bool x;
cout << (x ? 1 : 2);
edit: unknown(google) has got it. In gcc my code was crashing because of ...
0
votes
1answer
39 views
valgrind reports uninitialised value in sqlite3_step and sqlite3_prepare_v2
Valgrind reports uninitialised value error about the sqlite3_prepare_v2 and sqlite3_step in the wrapper's following two methods.:
execQuery:
bool
CSQLiteDB::execQuery(const char* ...
0
votes
0answers
42 views
Uninitialized string offset on multidimensional array
Any idea why lines #2 and #6 throw a Notice: Uninitialized string offset: 0?
function get_user_class() {
if ((int) $GLOBALS['CURUSER']['class'] > $GLOBALS['UC_HIGHEST_CLASS'] || (int) ...
0
votes
0answers
23 views
NHibernate Memcached provider “Attempting to get SockIO from uninitialized pool”
I have recently started getting log4net warnings in my nHibernate 3.2-based application, specifically from the memcached cache provider. They all read as such:
"Attempting to get SockIO from ...
0
votes
2answers
78 views
New to programming php, and have seen similar problems
So currently I'm trying to fix up some old code for a stats server for a game (that is definitely outdated, and has been replaced recently with a new version). MUCH of the code is deprecated, so it's ...
0
votes
2answers
144 views
How to detect uninitialized memory (C++, windows, VS2005)?
I'm looking for memory debugger for Windows which will be able to debug uninitialized memory.
There is a code snippet (C++):
class Temp{
public:
Temp(double d) : m_double(d){};
double m_double;
...