CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Eri523

Search: Search took 0.07 seconds.

  1. Replies
    6
    Views
    18,153

    Re: How to read text file, line by line using NASM

    The symptoms you describe may very well indicate stack corruption, which results in the all-time popular undefined behavior. The stack essentially is a system resource and you can't simply use stack...
  2. Replies
    6
    Views
    18,153

    Re: How to read text file, line by line using NASM

    Well, in this case you're still using a buffer, but instead of allocating it statically, you allocated it from the stack, so it's a variable local to your program's equivalent to a C/C++ program's...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured