free

address in push instruction changing after modifying exe in hex

running on windows 7, 32bit home pro I created a very simple few line app in visual studio 2008 , compiled and linked with standard libraries in release mode into executable test.exe. The code in c is as follows: char* test = "h"; int main() { _asm { push 0xFEEDBACC; } MessageBoxA(0,test,test,0); } which res...

how can I get a free domain name?

I want to get a free domain name not hosting space. Simply where can I get it ? I got several site like freehostia.com. They only offer free hosting but not domain name. So is there any way to get free domain name? ...

Is there a free database or web service api for music information (albums, artists, tracks)?

I need to look up artist/album/track information for song titles. Is there a free database I could download or a open source web service/api I could use? ...

Free quality synchronization software? (backup software)

I have started working on larger projects using PHP, and I'm realizing how bad it would suck if the virtual machine I'm storing it all on were to crash or get deleted somehow. So I looked into synchronization in Ecplipse and got dissapointed. I was hoping for a function that would save my file to several locations instead of just one. A...

C free char* allocated on heap

Is there a memory leak in the following code example as I have allocated memory on the heap for name which hasn't been freed? If I add free(person->name); before the free(person); line then I get a runtime error in VS "CRT detected that the application wrote to memory after end of heap buffer". header.h: #ifndef HEADER #define HEADER ...

Someone has tested SaltOS CRM?

I recently discovered a new PHP CRM/ERP solution: http://www.ws3.es/portal/es/saltos.htm We are looking for a open source intranet solution, mainly to manage projects, client accounts, corporative email, etc. We've been testing it and it looks good, but my question is if someone else has given it a try? ...

Objective C free command not working with malloced memory

Hello All, I have an object that holds a pointer to some malloced memory, when I come to dealloc the object I use the free command to free up the malloced memory, how ever the free command appears to be absolutely doing nothing and I'm getting large memory leaks as a result. I have confirmed that the dealloc command is being executed. ...

Is there any free GUI for administering AD LDS (ADAM)?

I am researching if ADLDS or ADAM is suitable for handling the users of a company product. Currently we are using AD, but we are planning to scale to more customers without needing to buy CALs. I got how to use ADSI Edit to add User & Groups, but I couldnt find any tool to do that like "Active Directory users and computers", and I would...

C++ object created with new, destroyed with free(); How bad is this?

Hello, all. I am working on modifying a relatively large C++ program, where unfortunately it is not always clear whether someone before me used C or C++ syntax (this is in the electrical engineering department at a university, and we EEs are always tempted to use C for everything, and unfortunately in this case, people can actually get ...

what is the best windows x server to use to connect linux GUI

Hello all im searching for free fast x server to connect Linux GUI . any recommendations? ...

*glibc detected double free or corruption() * message!

The following deleteNode function when I run the program gets these: * glibc detected free(): invalid next size (normal): 0x000000000103dd90 ** Even i make the ' free(here); ' a comment,i get the above message. I dont think that the other 'free' calls provokes a problem like that. But I cant see why this would be wrong. :/ struct List...